From 6e4b011dacd2b6c897df84a9f7c0909d088ee327 Mon Sep 17 00:00:00 2001 From: Alasdair Kergon Date: Fri, 13 Feb 2004 15:36:58 +0000 Subject: [PATCH] Don't inline hash _find --- lib/datastruct/hash.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/datastruct/hash.c b/lib/datastruct/hash.c index ac4f181ce..f9211aa85 100644 --- a/lib/datastruct/hash.c +++ b/lib/datastruct/hash.c @@ -125,7 +125,7 @@ void hash_destroy(struct hash_table *t) dbg_free(t); } -static inline struct hash_node **_find(struct hash_table *t, const char *key) +static struct hash_node **_find(struct hash_table *t, const char *key) { unsigned h = _hash(key) & (t->num_slots - 1); struct hash_node **c;