From b6ce7d5ddce573f500b8770d9052e0c422c91500 Mon Sep 17 00:00:00 2001 From: paule Date: Mon, 16 Jul 2018 14:29:59 +0800 Subject: [PATCH] Update dict.c change coding style. --- src/dict.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/dict.c b/src/dict.c index 4db75861..4eeb26e0 100644 --- a/src/dict.c +++ b/src/dict.c @@ -705,8 +705,10 @@ 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) i = d->rehashidx; - else continue; + if (i >= d->ht[1].size) + i = d->rehashidx; + else + continue; } if (i >= d->ht[j].size) continue; /* Out of range for this table. */ dictEntry *he = d->ht[j].table[i];