From: Justin Erenkrantz Date: Thu, 18 Apr 2002 08:27:28 +0000 (+0000) Subject: Fix 'control reaches end of non-void function' warning X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=3f257b8182de78821ca88e3f249aa7f25c410b09;p=apache Fix 'control reaches end of non-void function' warning Submitted by: Ben Collins-Sussman Tweaked by: Justin Erenkrantz git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@94695 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/CHANGES b/CHANGES index 413d017606..50a9acbf57 100644 --- a/CHANGES +++ b/CHANGES @@ -1,5 +1,8 @@ Changes with Apache 2.0.36 + *) Fix 'control reaches end of non-void function' warning in + server/log.c. [Ben Collins-Sussman ] + *) Perchild MPM is now correctly deemed as experimental and is now located in server/mpm/experimental. [Justin Erenkrantz] diff --git a/server/log.c b/server/log.c index 4898aba926..d6adc33917 100644 --- a/server/log.c +++ b/server/log.c @@ -216,8 +216,8 @@ AP_DECLARE(apr_status_t) ap_replace_stderr_log(apr_pool_t *p, if (rc != APR_SUCCESS) { ap_log_error(APLOG_MARK, APLOG_CRIT, rc, NULL, "unable to replace stderr with error_log"); - return rc; } + return rc; } static int log_child(apr_pool_t *p, const char *progname,