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 2012/12/16 12:48:20 UTC

svn commit: r1422548 - /httpd/httpd/trunk/modules/lua/lua_apr.c

Author: sf
Date: Sun Dec 16 11:48:19 2012
New Revision: 1422548

URL: http://svn.apache.org/viewvc?rev=1422548&view=rev
Log:
remove unused variable

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

Modified: httpd/httpd/trunk/modules/lua/lua_apr.c
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/modules/lua/lua_apr.c?rev=1422548&r1=1422547&r2=1422548&view=diff
==============================================================================
--- httpd/httpd/trunk/modules/lua/lua_apr.c (original)
+++ httpd/httpd/trunk/modules/lua/lua_apr.c Sun Dec 16 11:48:19 2012
@@ -709,7 +709,6 @@ static int lua_ap_module_info(lua_State 
     moduleName = lua_tostring(L, 1);
     mod = ap_find_linked_module(moduleName);
     if (mod) {
-        int i = 0;
         const command_rec *cmd;
         lua_newtable(L);
         lua_pushstring(L, "commands");