From: wessels <> Date: Sun, 24 Jan 1999 11:07:01 +0000 (+0000) Subject: damn semicolons X-Git-Tag: SQUID_3_0_PRE1~2349 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=efacbef033d37d21c8ece289beeb89680f28d170;p=thirdparty%2Fsquid.git damn semicolons --- diff --git a/lib/hash.c b/lib/hash.c index abd0d95f36..8eecb1748a 100644 --- a/lib/hash.c +++ b/lib/hash.c @@ -1,6 +1,6 @@ /* - * $Id: hash.c,v 1.6 1998/10/08 20:10:13 wessels Exp $ + * $Id: hash.c,v 1.7 1999/01/24 04:07:01 wessels Exp $ * * DEBUG: section 0 Hash Tables * AUTHOR: Harvest Derived @@ -308,7 +308,7 @@ void hashFreeMemory(hash_table * hid) { assert(hid); - if (hid->buckets); + if (hid->buckets) xfree(hid->buckets); xfree(hid); }