From 20fb91fd31e1de9ca687e302f0f05d229713c9ed Mon Sep 17 00:00:00 2001 From: antirez Date: Tue, 5 Nov 2013 11:56:11 +0100 Subject: [PATCH] removed not used vars in dictScan(). --- src/dict.c | 3 --- 1 file changed, 3 deletions(-) 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;