mirror of
https://github.com/fluencelabs/redis
synced 2025-03-30 22:31:03 +00:00
dict.c: remove a few trailing spaces.
This commit is contained in:
parent
4fc2099235
commit
cefe21d28a
@ -705,9 +705,9 @@ unsigned int dictGetSomeKeys(dict *d, dictEntry **des, unsigned int count) {
|
|||||||
* table, there will be no elements in both tables up to
|
* table, there will be no elements in both tables up to
|
||||||
* the current rehashing index, so we jump if possible.
|
* the current rehashing index, so we jump if possible.
|
||||||
* (this happens when going from big to small table). */
|
* (this happens when going from big to small table). */
|
||||||
if (i >= d->ht[1].size)
|
if (i >= d->ht[1].size)
|
||||||
i = d->rehashidx;
|
i = d->rehashidx;
|
||||||
else
|
else
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
if (i >= d->ht[j].size) continue; /* Out of range for this table. */
|
if (i >= d->ht[j].size) continue; /* Out of range for this table. */
|
||||||
|
Loading…
x
Reference in New Issue
Block a user