From 1642da19bb04e07a036d028fb4d458f576c4b02f 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 174a45769..3df4d3a08 100644 --- a/src/sentinel.c +++ b/src/sentinel.c @@ -2537,7 +2537,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); }