Commit cefe21d2 authored by antirez's avatar antirez
Browse files

dict.c: remove a few trailing spaces.

parent 4fc20992
......@@ -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
* the current rehashing index, so we jump if possible.
* (this happens when going from big to small table). */
if (i >= d->ht[1].size)
if (i >= d->ht[1].size)
i = d->rehashidx;
else
else
continue;
}
if (i >= d->ht[j].size) continue; /* Out of range for this table. */
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment