diff options
author | antirez <antirez@gmail.com> | 2014-01-13 11:05:13 +0100 |
---|---|---|
committer | antirez <antirez@gmail.com> | 2014-01-13 16:39:47 +0100 |
commit | 8ed0b49525b8e0c790317b076330a8ead24f90c4 (patch) | |
tree | ff4027d2d27d6b02223219db18e19e6222e165a3 /src/sentinel.c | |
parent | 560e548dc6b13413c4b6bacbcf42feae221b09c8 (diff) | |
download | redis-8ed0b49525b8e0c790317b076330a8ead24f90c4.tar.gz |
Sentinel: fix wrong arity error message.
Diffstat (limited to 'src/sentinel.c')
-rw-r--r-- | src/sentinel.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sentinel.c b/src/sentinel.c index ee6ec17c2..940cc0b11 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); } |