mirror of
https://github.com/fluencelabs/redis
synced 2025-03-19 09:00:51 +00:00
fix compile warning in addReplySubcommandSyntaxError
This commit is contained in:
parent
cb78c84235
commit
0a5805d7f1
@ -570,7 +570,7 @@ void addReplySubcommandSyntaxError(client *c) {
|
|||||||
sdstoupper(cmd);
|
sdstoupper(cmd);
|
||||||
addReplyErrorFormat(c,
|
addReplyErrorFormat(c,
|
||||||
"Unknown subcommand or wrong number of arguments for '%s'. Try %s HELP.",
|
"Unknown subcommand or wrong number of arguments for '%s'. Try %s HELP.",
|
||||||
c->argv[1]->ptr,cmd);
|
(char*)c->argv[1]->ptr,cmd);
|
||||||
sdsfree(cmd);
|
sdsfree(cmd);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user