diff --git a/src/dict.c b/src/dict.c index 72eecae3..bd54a502 100644 --- a/src/dict.c +++ b/src/dict.c @@ -751,7 +751,6 @@ unsigned long dictScan(dict *d, { dictht *t0, *t1; const dictEntry *de; - unsigned long s0, s1; unsigned long m0, m1; if (dictSize(d) == 0) return 0; @@ -777,8 +776,6 @@ unsigned long dictScan(dict *d, t1 = &d->ht[0]; } - s0 = t0->size; - s1 = t1->size; m0 = t0->sizemask; m1 = t1->sizemask;