]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
printf bug
authorwessels <>
Wed, 5 May 1999 00:47:28 +0000 (00:47 +0000)
committerwessels <>
Wed, 5 May 1999 00:47:28 +0000 (00:47 +0000)
src/store.cc

index 740a75a9de71991a1272d6a341d75941f5b99bc6..d402fd4ce8c1ed801d73d8eda9e46faf33ee2597 100644 (file)
@@ -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);
 }