X-Git-Url: https://git.saurik.com/redis.git/blobdiff_plain/ef231a7c56cafc42ff486b91d88ae7ec642a2117..73e718675b68f141054adf18eb3a70619d67406b:/src/redis.c diff --git a/src/redis.c b/src/redis.c index 35f4395b..dc8a0032 100644 --- a/src/redis.c +++ b/src/redis.c @@ -118,7 +118,7 @@ struct redisCommand redisCommandTable[] = { {"smembers",sinterCommand,2,0,NULL,1,1,1,0,0}, {"zadd",zaddCommand,-4,REDIS_CMD_DENYOOM,NULL,1,1,1,0,0}, {"zincrby",zincrbyCommand,4,REDIS_CMD_DENYOOM,NULL,1,1,1,0,0}, - {"zrem",zremCommand,3,0,NULL,1,1,1,0,0}, + {"zrem",zremCommand,-3,0,NULL,1,1,1,0,0}, {"zremrangebyscore",zremrangebyscoreCommand,4,0,NULL,1,1,1,0,0}, {"zremrangebyrank",zremrangebyrankCommand,4,0,NULL,1,1,1,0,0}, {"zunionstore",zunionstoreCommand,-4,REDIS_CMD_DENYOOM,zunionInterGetKeys,0,0,0,0,0},