You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by sf...@apache.org on 2011/05/01 22:16:19 UTC

svn commit: r1098399 - /httpd/httpd/trunk/modules/lua/lua_vmprep.c

Author: sf
Date: Sun May  1 20:16:19 2011
New Revision: 1098399

URL: http://svn.apache.org/viewvc?rev=1098399&view=rev
Log:
avoid compiler warnings with gcc

Modified:
    httpd/httpd/trunk/modules/lua/lua_vmprep.c

Modified: httpd/httpd/trunk/modules/lua/lua_vmprep.c
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/modules/lua/lua_vmprep.c?rev=1098399&r1=1098398&r2=1098399&view=diff
==============================================================================
--- httpd/httpd/trunk/modules/lua/lua_vmprep.c (original)
+++ httpd/httpd/trunk/modules/lua/lua_vmprep.c Sun May  1 20:16:19 2011
@@ -360,8 +360,8 @@ static apr_status_t vm_destruct(void *vm
 {
     lua_State *L = (lua_State *)vm; 
 
-    (void*)params;
-    (void*)pool;
+    (void)params;
+    (void)pool;
 
     cleanup_lua(L);