Skip to content
Snippets Groups Projects
Commit 2c893bcd authored by Stefan Fritsch's avatar Stefan Fritsch
Browse files

avoid compiler warnings with gcc

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1098399 13f79535-47bb-0310-9956-ffa450edef68
parent 8bfc4144
No related branches found
No related tags found
No related merge requests found
......@@ -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);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment