X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~mdw/git/mLib/blobdiff_plain/9dc511e46d5acad665175981f824288062e27671..e983c8460c7674ac7e63099c800d33927d64f112:/hash.c 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@ --- * *