From: Jim Jagielski Date: Thu, 18 Feb 2016 19:03:10 +0000 (+0000) Subject: handle compiler warning X-Git-Tag: 2.5.0-alpha~2044 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=de4ade883bbe8b0e8231db642e481cc36868b54b;p=thirdparty%2Fapache%2Fhttpd.git handle compiler warning git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1731118 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/server/mpm/motorz/motorz.c b/server/mpm/motorz/motorz.c index 35146c8f404..2edbac9b7d1 100644 --- a/server/mpm/motorz/motorz.c +++ b/server/mpm/motorz/motorz.c @@ -1578,7 +1578,7 @@ static int motorz_open_logs(apr_pool_t *p, apr_pool_t *plog, apr_pool_t *ptemp, 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");