From: Jeff Trawick Date: Wed, 15 Jan 2003 13:43:58 +0000 (+0000) Subject: fix the type of the idlers field to match what apr_atomic_cas() expects X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b31aeb23b86dcf4a824b8dbc3204987f37015394;p=apache fix the type of the idlers field to match what apr_atomic_cas() expects this fixes the compile when using the native compiler for AIX (and likely other non-gcc compilers) git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@98272 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/server/mpm/worker/fdqueue.c b/server/mpm/worker/fdqueue.c index ac69db209a..0de6cc1f21 100644 --- a/server/mpm/worker/fdqueue.c +++ b/server/mpm/worker/fdqueue.c @@ -65,7 +65,7 @@ typedef struct recycled_pool { } recycled_pool; struct fd_queue_info_t { - int idlers; + apr_uint32_t idlers; apr_thread_mutex_t *idlers_mutex; apr_thread_cond_t *wait_for_idler; int terminated;