]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
Fix a debugs typo in 32-bit-only fs code
authorhno <>
Fri, 17 Aug 2007 04:03:32 +0000 (04:03 +0000)
committerhno <>
Fri, 17 Aug 2007 04:03:32 +0000 (04:03 +0000)
src/store_swapout.cc

index ca32fa5a52c18070ab36906357369a08c3bc9155..75ccf07693bf37492d0091a482775c07de527291 100644 (file)
@@ -1,6 +1,6 @@
 
 /*
- * $Id: store_swapout.cc,v 1.119 2007/08/16 13:46:20 hno Exp $
+ * $Id: store_swapout.cc,v 1.120 2007/08/16 22:03:32 hno Exp $
  *
  * DEBUG: section 20    Storage Manager Swapout Functions
  * AUTHOR: Duane Wessels
@@ -227,7 +227,7 @@ StoreEntry::swapOut()
 #if SIZEOF_OFF_T <= 4
 
     if (mem_obj->endOffset() > 0x7FFF0000) {
-        debugs(20, 0, "WARNING: preventing off_t overflow for %s\n", url());
+        debugs(20, 0, "WARNING: preventing off_t overflow for " << url());
         abort();
         return;
     }