You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by jo...@apache.org on 2008/04/07 15:14:38 UTC

svn commit: r645497 - /httpd/httpd/trunk/modules/http/http_protocol.c

Author: jorton
Date: Mon Apr  7 06:14:37 2008
New Revision: 645497

URL: http://svn.apache.org/viewvc?rev=645497&view=rev
Log:
* modules/http/http_protocol.c (is_mpm_running): Fix warning with
gcc -Wall.

Modified:
    httpd/httpd/trunk/modules/http/http_protocol.c

Modified: httpd/httpd/trunk/modules/http/http_protocol.c
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/modules/http/http_protocol.c?rev=645497&r1=645496&r2=645497&view=diff
==============================================================================
--- httpd/httpd/trunk/modules/http/http_protocol.c (original)
+++ httpd/httpd/trunk/modules/http/http_protocol.c Mon Apr  7 06:14:37 2008
@@ -157,7 +157,7 @@
  */
 #define METHOD_NUMBER_LAST  62
 
-static int is_mpm_running()
+static int is_mpm_running(void)
 {
     int mpm_state = 0;