From: wessels <> Date: Wed, 5 May 1999 00:47:28 +0000 (+0000) Subject: printf bug X-Git-Tag: SQUID_3_0_PRE1~2227 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c63ea1e2c4b4c392abee90d2097346eb6c7387d5;p=thirdparty%2Fsquid.git printf bug --- diff --git a/src/store.cc b/src/store.cc index 740a75a9de..d402fd4ce8 100644 --- a/src/store.cc +++ b/src/store.cc @@ -1,7 +1,7 @@ /* - * $Id: store.cc,v 1.494 1999/05/03 22:59:58 wessels Exp $ - * $Id: store.cc,v 1.494 1999/05/03 22:59:58 wessels Exp $ + * $Id: store.cc,v 1.495 1999/05/04 18:47:28 wessels Exp $ + * $Id: store.cc,v 1.495 1999/05/04 18:47:28 wessels Exp $ * * DEBUG: section 20 Storage Manager * AUTHOR: Harvest Derived @@ -907,7 +907,7 @@ storeInitHashValues(void) /* ideally the full scan period should be configurable, for the * moment it remains at approximately 24 hours. */ store_hash_buckets = storeKeyHashBuckets(i); - debug(20, 1) ("Using %d Store buckets%s\n", store_hash_buckets); + debug(20, 1) ("Using %d Store buckets\n", store_hash_buckets); debug(20, 1) ("Max Mem size: %d KB\n", Config.memMaxSize >> 10); debug(20, 1) ("Max Swap size: %d KB\n", Config.Swap.maxSize); }