diff options
author | Joe Orton <jorton@apache.org> | 2008-04-07 15:14:37 +0200 |
---|---|---|
committer | Joe Orton <jorton@apache.org> | 2008-04-07 15:14:37 +0200 |
commit | 71da0a5106d16b8117e23c7446304d6fed7f3a51 (patch) | |
tree | 0a9119a4c9900d099cb8b0bc379ef4fba1b0a632 /modules/http/http_protocol.c | |
parent | * include/http_request.h: Fix warning with gcc -Wall. (diff) | |
download | apache2-71da0a5106d16b8117e23c7446304d6fed7f3a51.tar.xz apache2-71da0a5106d16b8117e23c7446304d6fed7f3a51.zip |
* modules/http/http_protocol.c (is_mpm_running): Fix warning with
gcc -Wall.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@645497 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'modules/http/http_protocol.c')
-rw-r--r-- | modules/http/http_protocol.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/http/http_protocol.c b/modules/http/http_protocol.c index aa23a32fda..0d1bee0ac3 100644 --- a/modules/http/http_protocol.c +++ b/modules/http/http_protocol.c @@ -157,7 +157,7 @@ AP_IMPLEMENT_HOOK_VOID(insert_error_filter, (request_rec *r), (r)) */ #define METHOD_NUMBER_LAST 62 -static int is_mpm_running() +static int is_mpm_running(void) { int mpm_state = 0; |