You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by ji...@apache.org on 2016/02/18 20:03:11 UTC

svn commit: r1731118 - /httpd/httpd/trunk/server/mpm/motorz/motorz.c

Author: jim
Date: Thu Feb 18 19:03:10 2016
New Revision: 1731118

URL: http://svn.apache.org/viewvc?rev=1731118&view=rev
Log:
handle compiler warning

Modified:
    httpd/httpd/trunk/server/mpm/motorz/motorz.c

Modified: httpd/httpd/trunk/server/mpm/motorz/motorz.c
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/server/mpm/motorz/motorz.c?rev=1731118&r1=1731117&r2=1731118&view=diff
==============================================================================
--- httpd/httpd/trunk/server/mpm/motorz/motorz.c (original)
+++ httpd/httpd/trunk/server/mpm/motorz/motorz.c Thu Feb 18 19:03:10 2016
@@ -1578,7 +1578,7 @@ static int motorz_open_logs(apr_pool_t *
     all_buckets = apr_pcalloc(pconf, num_buckets *
                                      sizeof(motorz_child_bucket));
     for (i = 0; i < num_buckets; i++) {
-        if (rv = ap_mpm_pod_open(pconf, &all_buckets[i].pod)) {
+        if ((rv = ap_mpm_pod_open(pconf, &all_buckets[i].pod))) {
             ap_log_error(APLOG_MARK, APLOG_CRIT | level_flags, rv,
                          (startup ? NULL : s), APLOGNO(03277)
                          "could not open pipe-of-death");