From: wessels <> Date: Sat, 17 Oct 1998 01:18:16 +0000 (+0000) Subject: fix debugging message X-Git-Tag: SQUID_3_0_PRE1~2569 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e69324cd9e108a6f216009ede788fa6f7d555d51;p=thirdparty%2Fsquid.git fix debugging message --- diff --git a/src/store.cc b/src/store.cc index 6d391f246a..1788970697 100644 --- a/src/store.cc +++ b/src/store.cc @@ -1,6 +1,6 @@ /* - * $Id: store.cc,v 1.468 1998/10/09 17:53:01 wessels Exp $ + * $Id: store.cc,v 1.469 1998/10/16 19:18:16 wessels Exp $ * * DEBUG: section 20 Storage Manager * AUTHOR: Harvest Derived @@ -864,7 +864,7 @@ storeEntryValidLength(const StoreEntry * e) return 1; debug(20, 3) ("storeEntryValidLength: %d bytes too %s; '%s'\n", diff < 0 ? -diff : diff, - diff < 0 ? "small" : "big", + diff < 0 ? "big" : "small", storeKeyText(e->key)); return 0; }