]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
damn semicolons
authorwessels <>
Sun, 24 Jan 1999 11:07:01 +0000 (11:07 +0000)
committerwessels <>
Sun, 24 Jan 1999 11:07:01 +0000 (11:07 +0000)
lib/hash.c

index abd0d95f366cbabb6881fd51339137c461c16821..8eecb1748a198910fa4ded5730fdc67bbe7b0e72 100644 (file)
@@ -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);
 }