Commit baf8a39f authored by Madelyn Olson's avatar Madelyn Olson
Browse files

Fixed hset error since it's shared with hmset

parent 99e6e732
......@@ -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;
}
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment