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-Tag: 2.0.36~160 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7f594c679f90d5b62087c9aa29388e503d3d45f1;p=thirdparty%2Fapache%2Fhttpd.git 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 413d017606b..50a9acbf57d 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 4898aba926f..d6adc339171 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,