summaryrefslogtreecommitdiff
path: root/src/dict.c
diff options
context:
space:
mode:
authorantirez <antirez@gmail.com>2018-07-17 10:39:47 +0200
committerantirez <antirez@gmail.com>2018-07-17 10:39:47 +0200
commitcefe21d28a75f4fdbf24823ce42e777c2b9d5c6f (patch)
tree8b5caf9c30cebe7e2f75baafe8b19c02bb53677b /src/dict.c
parent4fc2099235a9214a953390340e94ec632cc16344 (diff)
downloadredis-cefe21d28a75f4fdbf24823ce42e777c2b9d5c6f.tar.gz
dict.c: remove a few trailing spaces.
Diffstat (limited to 'src/dict.c')
-rw-r--r--src/dict.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/dict.c b/src/dict.c
index 95a141d0d..2cf9d4839 100644
--- a/src/dict.c
+++ b/src/dict.c
@@ -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. */