summaryrefslogtreecommitdiff
path: root/assoc.c
diff options
context:
space:
mode:
Diffstat (limited to 'assoc.c')
-rw-r--r--assoc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/assoc.c b/assoc.c
index 0fc5d18..5558be1 100644
--- a/assoc.c
+++ b/assoc.c
@@ -218,7 +218,7 @@ static void *assoc_maintenance_thread(void *arg) {
for (it = old_hashtable[expand_bucket]; NULL != it; it = next) {
next = it->h_next;
- bucket = hash(ITEM_key(it), it->nkey, 0) & hashmask(hashpower);
+ bucket = hash(ITEM_key(it), it->nkey) & hashmask(hashpower);
it->h_next = primary_hashtable[bucket];
primary_hashtable[bucket] = it;
}