Fixed hset error since it's shared with hmset

This commit is contained in:
Madelyn Olson 2020-08-18 14:28:55 -07:00
parent 99e6e73235
commit baf8a39f2c
1 changed files with 1 additions and 1 deletions

View File

@ -532,7 +532,7 @@ void hsetCommand(client *c) {
robj *o;
if ((c->argc % 2) == 1) {
addReplyError(c,"wrong number of arguments for HMSET");
addReplyErrorFormat(c,"wrong number of arguments for '%s' command",c->argv[0]->ptr);
return;
}