From: hno <> Date: Fri, 17 Aug 2007 04:03:32 +0000 (+0000) Subject: Fix a debugs typo in 32-bit-only fs code X-Git-Tag: SQUID_3_0_PRE7~60 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=c664b2a6450086a96f589d03fe77f121ebdef13e;p=thirdparty%2Fsquid.git Fix a debugs typo in 32-bit-only fs code --- diff --git a/src/store_swapout.cc b/src/store_swapout.cc index ca32fa5a52..75ccf07693 100644 --- a/src/store_swapout.cc +++ b/src/store_swapout.cc @@ -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; }