]> granicus.if.org Git - apache/commitdiff
avoid compiler warnings with gcc
authorStefan Fritsch <sf@apache.org>
Sun, 1 May 2011 20:16:19 +0000 (20:16 +0000)
committerStefan Fritsch <sf@apache.org>
Sun, 1 May 2011 20:16:19 +0000 (20:16 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1098399 13f79535-47bb-0310-9956-ffa450edef68

modules/lua/lua_vmprep.c

index 03c26054bfa1886d53bc7ec3aa9fc421c83c1a19..f7d535e892cfb9792c93215a4b24b8001272dccc 100644 (file)
@@ -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);