Sentinel: fix wrong arity error message.

This commit is contained in:
antirez 2014-01-13 11:05:13 +01:00
parent 964f6b17e9
commit 3cdcaff069

View File

@ -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);
}