diff options
author | Jeff Trawick <trawick@apache.org> | 2001-02-20 11:37:34 +0100 |
---|---|---|
committer | Jeff Trawick <trawick@apache.org> | 2001-02-20 11:37:34 +0100 |
commit | bd95320f1bb629af879c68a2bc7d81572c68d081 (patch) | |
tree | 28441600beae2d2f2f317dc2e4c7934c91f2570a /server/mpm/threaded/threaded.c | |
parent | get rid of a type mismatch warning (diff) | |
download | apache2-bd95320f1bb629af879c68a2bc7d81572c68d081.tar.xz apache2-bd95320f1bb629af879c68a2bc7d81572c68d081.zip |
make the linkage of clean_child_exit() consistent to fix a
warning on HP-UX
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@88247 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to '')
-rw-r--r-- | server/mpm/threaded/threaded.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/mpm/threaded/threaded.c b/server/mpm/threaded/threaded.c index efe59cedde..5a3cca570f 100644 --- a/server/mpm/threaded/threaded.c +++ b/server/mpm/threaded/threaded.c @@ -179,7 +179,7 @@ AP_DECLARE(int) ap_get_max_daemons(void) /* a clean exit from a child with proper cleanup */ static void clean_child_exit(int code) __attribute__ ((noreturn)); -void clean_child_exit(int code) +static void clean_child_exit(int code) { if (pchild) { apr_pool_destroy(pchild); |