From e17e0b0529eda98156f988c907789f08299c2f7e Mon Sep 17 00:00:00 2001 From: antirez Date: Mon, 30 Nov 2009 19:26:52 +0100 Subject: [PATCH] fixed a subtle bug in redis-cli not having visible effects --- redis-cli.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/redis-cli.c b/redis-cli.c index ea3cf9d5..eef85f24 100644 --- a/redis-cli.c +++ b/redis-cli.c @@ -42,7 +42,7 @@ #define REDIS_CMD_INLINE 1 #define REDIS_CMD_BULK 2 -#define REDIS_CMD_MULTIBULK 3 +#define REDIS_CMD_MULTIBULK 4 #define REDIS_NOTUSED(V) ((void) V)