From: Stefan Fritsch Date: Sun, 1 May 2011 20:16:19 +0000 (+0000) Subject: avoid compiler warnings with gcc X-Git-Tag: 2.3.12~25 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ee445c943ec8cb029db878c31856faf4b9d34816;p=apache avoid compiler warnings with gcc git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1098399 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/lua/lua_vmprep.c b/modules/lua/lua_vmprep.c index 03c26054bf..f7d535e892 100644 --- a/modules/lua/lua_vmprep.c +++ b/modules/lua/lua_vmprep.c @@ -360,8 +360,8 @@ static apr_status_t vm_destruct(void *vm, void *params, apr_pool_t *pool) { lua_State *L = (lua_State *)vm; - (void*)params; - (void*)pool; + (void)params; + (void)pool; cleanup_lua(L);