Signed-off-by: Sven Eckelmann sven@narfation.org --- hash.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/hash.c b/hash.c index 13372fa..4c90a8b 100644 --- a/hash.c +++ b/hash.c @@ -241,7 +241,7 @@ void *hash_find(struct hashtable_t *hash, void *keydata) int index; struct element_t *bucket;
- index = hash->choose(keydata , hash->size); + index = hash->choose(keydata, hash->size); bucket = hash->table[index];
while (bucket) {