From: robertc <> Date: Mon, 15 Sep 2003 04:41:24 +0000 (+0000) Subject: Summary: signed correctness for the mem pool idle tracker. X-Git-Tag: SQUID_3_0_PRE4~1209 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=bcfb8a16dab96b4522dfc8aaa7279364db4793b6;p=thirdparty%2Fsquid.git Summary: signed correctness for the mem pool idle tracker. Keywords: signed correctness for the mem pool idle tracker. --- diff --git a/src/mem.cc b/src/mem.cc index 9a4977e298..6315ceb45d 100644 --- a/src/mem.cc +++ b/src/mem.cc @@ -1,6 +1,6 @@ /* - * $Id: mem.cc,v 1.82 2003/07/15 11:33:22 robertc Exp $ + * $Id: mem.cc,v 1.83 2003/09/14 22:41:24 robertc Exp $ * * DEBUG: section 13 High Level Memory Pool Management * AUTHOR: Harvest Derived @@ -337,12 +337,12 @@ Mem::CleanIdlePools(void *unused) eventAdd("memPoolCleanIdlePools", CleanIdlePools, NULL, clean_interval, 1); } -static int mem_idle_limit = 0; +static unsigned int mem_idle_limit = 0; void memConfigure(void) { - int new_pool_limit; + unsigned int new_pool_limit; /* set to configured value first */ if (!Config.onoff.mem_pools)