From: Bill Stoddard Date: Tue, 27 Jun 2000 22:35:40 +0000 (+0000) Subject: Fix compile warning on AIX X-Git-Tag: APACHE_2_0_ALPHA_5~229 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=60b349a911a2fe98d309df9253accfb54a2a4ebd;p=thirdparty%2Fapache%2Fhttpd.git Fix compile warning on AIX git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@85710 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/server/mpm/mpmt_pthread/mpmt_pthread.c b/server/mpm/mpmt_pthread/mpmt_pthread.c index 863e30ba99d..3b3a78ba216 100644 --- a/server/mpm/mpmt_pthread/mpmt_pthread.c +++ b/server/mpm/mpmt_pthread/mpmt_pthread.c @@ -911,7 +911,7 @@ static void perform_idle_server_maintenance(void) int free_slots[MAX_SPAWN_RATE]; int last_non_dead; int total_non_dead; - int one = 1; + ap_ssize_t one = 1; ap_status_t rv; /* initialize the free_list */ @@ -1087,7 +1087,7 @@ int ap_mpm_run(ap_pool_t *_pconf, ap_pool_t *plog, server_rec *s) { int remaining_children_to_start; ap_status_t rv; - int one = 1; + ap_ssize_t one = 1; pconf = _pconf; ap_server_conf = s;