mirror of
https://github.com/fluencelabs/redis
synced 2025-06-14 17:51:21 +00:00
Aesthetic fix (missing space) into HSCAN and ZSCAN implementations.
Thanks to @badboy for reporting.
This commit is contained in:
@ -763,7 +763,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);
|
||||
}
|
||||
|
Reference in New Issue
Block a user