From 20bf4fd8965186f2ef1168f1d8cce251549cd7fa Mon Sep 17 00:00:00 2001 From: Jim Jagielski Date: Mon, 25 Nov 2013 15:40:16 +0000 Subject: [PATCH] Use correct type... git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1545325 13f79535-47bb-0310-9956-ffa450edef68 --- server/mpm/event/fdqueue.c | 2 +- server/mpm/eventopt/fdqueue.c | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) 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; -- 2.47.3