summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Fritsch <sf@apache.org>2011-05-01 22:16:19 +0200
committerStefan Fritsch <sf@apache.org>2011-05-01 22:16:19 +0200
commitee445c943ec8cb029db878c31856faf4b9d34816 (patch)
tree4298b8d213d33611a82012e633280cddc438de82
parentUpdate. (diff)
downloadapache2-ee445c943ec8cb029db878c31856faf4b9d34816.tar.xz
apache2-ee445c943ec8cb029db878c31856faf4b9d34816.zip
avoid compiler warnings with gcc
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1098399 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--modules/lua/lua_vmprep.c4
1 files changed, 2 insertions, 2 deletions
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);