Return-Path: Delivered-To: apmail-httpd-cvs-archive@www.apache.org Received: (qmail 96691 invoked from network); 10 Jun 2010 15:33:17 -0000 Received: from unknown (HELO mail.apache.org) (140.211.11.3) by 140.211.11.9 with SMTP; 10 Jun 2010 15:33:17 -0000 Received: (qmail 68809 invoked by uid 500); 10 Jun 2010 15:33:17 -0000 Delivered-To: apmail-httpd-cvs-archive@httpd.apache.org Received: (qmail 68685 invoked by uid 500); 10 Jun 2010 15:33:16 -0000 Mailing-List: contact cvs-help@httpd.apache.org; run by ezmlm Precedence: bulk Reply-To: dev@httpd.apache.org list-help: list-unsubscribe: List-Post: List-Id: Delivered-To: mailing list cvs@httpd.apache.org Received: (qmail 68678 invoked by uid 99); 10 Jun 2010 15:33:16 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 10 Jun 2010 15:33:16 +0000 X-ASF-Spam-Status: No, hits=-1653.2 required=10.0 tests=ALL_TRUSTED,AWL X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 10 Jun 2010 15:33:15 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 00C7623888E8; Thu, 10 Jun 2010 15:32:34 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r953351 - /httpd/httpd/trunk/modules/lua/mod_lua.h Date: Thu, 10 Jun 2010 15:32:33 -0000 To: cvs@httpd.apache.org From: rjung@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20100610153234.00C7623888E8@eris.apache.org> Author: rjung Date: Thu Jun 10 15:32:33 2010 New Revision: 953351 URL: http://svn.apache.org/viewvc?rev=953351&view=rev Log: No need for trailing semicolon after APR_DECLARE_EXTERNAL_HOOK. gcc complains when using -pedantic. Modified: httpd/httpd/trunk/modules/lua/mod_lua.h Modified: httpd/httpd/trunk/modules/lua/mod_lua.h URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/modules/lua/mod_lua.h?rev=953351&r1=953350&r2=953351&view=diff ============================================================================== --- httpd/httpd/trunk/modules/lua/mod_lua.h (original) +++ httpd/httpd/trunk/modules/lua/mod_lua.h Thu Jun 10 15:32:33 2010 @@ -143,9 +143,9 @@ typedef struct extern module AP_MODULE_DECLARE_DATA lua_module; APR_DECLARE_EXTERNAL_HOOK(ap_lua, AP_LUA, int, lua_open, - (lua_State *L, apr_pool_t *p)); + (lua_State *L, apr_pool_t *p)) APR_DECLARE_EXTERNAL_HOOK(ap_lua, AP_LUA, int, lua_request, - (lua_State *L, request_rec *r)); + (lua_State *L, request_rec *r)) #endif /* !_MOD_LUA_H_ */