From 8ed0b49525b8e0c790317b076330a8ead24f90c4 Mon Sep 17 00:00:00 2001 From: antirez Date: Mon, 13 Jan 2014 11:05:13 +0100 Subject: [PATCH] Sentinel: fix wrong arity error message. --- src/sentinel.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sentinel.c b/src/sentinel.c index ee6ec17c..940cc0b1 100644 --- a/src/sentinel.c +++ b/src/sentinel.c @@ -2539,7 +2539,7 @@ void sentinelCommand(redisClient *c) { return; numargserr: - addReplyErrorFormat(c,"Wrong number of commands for 'sentinel %s'", + addReplyErrorFormat(c,"Wrong number of arguments for 'sentinel %s'", (char*)c->argv[1]->ptr); }