From: Jim Jagielski Date: Mon, 25 Nov 2013 15:40:16 +0000 (+0000) Subject: Use correct type... X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=20bf4fd8965186f2ef1168f1d8cce251549cd7fa;p=thirdparty%2Fapache%2Fhttpd.git Use correct type... git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1545325 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/server/mpm/event/fdqueue.c b/server/mpm/event/fdqueue.c index c8bd87e027d..782b41a01ae 100644 --- a/server/mpm/event/fdqueue.c +++ b/server/mpm/event/fdqueue.c @@ -17,7 +17,7 @@ #include "fdqueue.h" #include "apr_atomic.h" -static zero_pt = (APR_INT32_MAX-1)>>2; +static apr_int32_t zero_pt = (APR_INT32_MAX-1)>>2; struct recycled_pool { diff --git a/server/mpm/eventopt/fdqueue.c b/server/mpm/eventopt/fdqueue.c index 13e67dafcc8..054803106ef 100644 --- a/server/mpm/eventopt/fdqueue.c +++ b/server/mpm/eventopt/fdqueue.c @@ -17,6 +17,8 @@ #include "fdqueue.h" #include "apr_atomic.h" +static apr_int32_t zero_pt = (APR_INT32_MAX-1)>>2; + typedef struct recycled_pool { apr_pool_t *pool;