- mark a few parameters as unused

git-svn-id: svn://svn.lighttpd.net/lighttpd/branches/lighttpd-1.4.x@1358 152afb58-edef-0310-8abb-c4023f1b3aa9
This commit is contained in:
Marcus Rückert 2006-10-03 22:15:55 +00:00
parent 91776b2d10
commit 15fde9cf07
1 changed files with 4 additions and 0 deletions

View File

@ -458,6 +458,10 @@ error:
}
#else
int cache_parse_lua(server *srv, connection *con, plugin_data *p, buffer *fn) {
UNUSED(srv);
UNUSED(con);
UNUSED(p);
UNUSED(fn);
/* error */
return -1;
}