Aesthetic fix (missing space) into HSCAN and ZSCAN implementations.

Thanks to @badboy for reporting.
This commit is contained in:
antirez
2013-10-28 13:20:03 +01:00
parent 35816a2e4d
commit bb2df795e0
2 changed files with 2 additions and 2 deletions

View File

@ -766,7 +766,7 @@ void hexistsCommand(redisClient *c) {
void hscanCommand(redisClient *c) {
robj *o;
if ((o= lookupKeyReadOrReply(c,c->argv[1],shared.emptyscan)) == NULL ||
if ((o = lookupKeyReadOrReply(c,c->argv[1],shared.emptyscan)) == NULL ||
checkType(c,o,REDIS_HASH)) return;
scanGenericCommand(c,o);
}