From: Mark Wooding Date: Fri, 7 Apr 2006 14:03:32 +0000 (+0100) Subject: hash: Trivial whitespace cleanups. X-Git-Tag: 2.0.4~8 X-Git-Url: https://git.distorted.org.uk/~mdw/mLib/commitdiff_plain/e983c8460c7674ac7e63099c800d33927d64f112?hp=9dc511e46d5acad665175981f824288062e27671 hash: Trivial whitespace cleanups. --- diff --git a/hash.c b/hash.c index d18cc00..92ca39b 100644 --- a/hash.c +++ b/hash.c @@ -74,10 +74,7 @@ void hash_create(hash_table *t, size_t n) * responsibility of the implementation. */ -void hash_destroy(hash_table *t) -{ - x_free(t->a, t->v); -} +void hash_destroy(hash_table *t) { x_free(t->a, t->v); } /* --- @hash_bin@ --- * * @@ -91,9 +88,7 @@ void hash_destroy(hash_table *t) */ hash_base **hash_bin(hash_table *t, uint32 hash) -{ - return (HASH_BIN(t, hash)); -} + { return (HASH_BIN(t, hash)); } /* --- @hash_extend@ --- * *