1
0
mirror of git://sourceware.org/git/lvm2.git synced 2024-12-21 13:34:40 +03:00

Don't inline hash _find

This commit is contained in:
Alasdair Kergon 2004-02-13 15:36:58 +00:00
parent a8537e6f59
commit 6e4b011dac

View File

@ -125,7 +125,7 @@ void hash_destroy(struct hash_table *t)
dbg_free(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); unsigned h = _hash(key) & (t->num_slots - 1);
struct hash_node **c; struct hash_node **c;