From efacbef033d37d21c8ece289beeb89680f28d170 Mon Sep 17 00:00:00 2001 From: wessels <> Date: Sun, 24 Jan 1999 11:07:01 +0000 Subject: [PATCH] damn semicolons --- lib/hash.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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); } -- 2.47.2