Commit e6c1aeaf authored by xhe's avatar xhe
Browse files

fix the format


Signed-off-by: default avatarxhe <xw897002528@gmail.com>
parent fae5ceef
...@@ -2765,9 +2765,9 @@ void helloCommand(client *c) { ...@@ -2765,9 +2765,9 @@ void helloCommand(client *c) {
if (c->argc >= 2) { if (c->argc >= 2) {
if (getLongLongFromObjectOrReply(c, c->argv[next_arg++], &ver, if (getLongLongFromObjectOrReply(c, c->argv[next_arg++], &ver,
"Protocol version is not an integer or out of range") != C_OK) { "Protocol version is not an integer or out of range") != C_OK) {
return; return;
} }
if (ver < 2 || ver > 3) { if (ver < 2 || ver > 3) {
addReplyError(c,"-NOPROTO unsupported protocol version"); addReplyError(c,"-NOPROTO unsupported protocol version");
......
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