]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
Fix compile warning on AIX
authorBill Stoddard <stoddard@apache.org>
Tue, 27 Jun 2000 22:35:40 +0000 (22:35 +0000)
committerBill Stoddard <stoddard@apache.org>
Tue, 27 Jun 2000 22:35:40 +0000 (22:35 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@85710 13f79535-47bb-0310-9956-ffa450edef68

server/mpm/mpmt_pthread/mpmt_pthread.c

index 863e30ba99df1501724a0411f2664dde53bd1f8c..3b3a78ba216a2b3f29ef4c909ff3eec30c788b5b 100644 (file)
@@ -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;