]> granicus.if.org Git - apache/commitdiff
Use correct type...
authorJim Jagielski <jim@apache.org>
Mon, 25 Nov 2013 15:40:16 +0000 (15:40 +0000)
committerJim Jagielski <jim@apache.org>
Mon, 25 Nov 2013 15:40:16 +0000 (15:40 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1545325 13f79535-47bb-0310-9956-ffa450edef68

server/mpm/event/fdqueue.c
server/mpm/eventopt/fdqueue.c

index c8bd87e027dd6bd826a0a01d96b4e89f92880fe0..782b41a01ae5a59053418dee12130e49ef1fe763 100644 (file)
@@ -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
 {
index 13e67dafcc8626fdd576f2a68035f868eea38452..054803106efd3d467967d121bc7523e4bc510c4f 100644 (file)
@@ -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;