mirror of
https://github.com/fluencelabs/redis
synced 2025-03-17 16:10:50 +00:00
removed not used vars in dictScan().
This commit is contained in:
parent
6cf230ea91
commit
20fb91fd31
@ -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;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user