Commit 482d678e authored by Itamar Haber's avatar Itamar Haber
Browse files

C style

parent b23c8bab
...@@ -610,11 +610,9 @@ void addReplyHelp(client *c, const char **help) { ...@@ -610,11 +610,9 @@ void addReplyHelp(client *c, const char **help) {
"%s <subcommand> arg arg ... arg. Subcommands are:",cmd); "%s <subcommand> arg arg ... arg. Subcommands are:",cmd);
sdsfree(cmd); sdsfree(cmd);
while (help[blen]) { while (help[blen]) addReplyStatus(c,help[blen++]);
addReplyStatus(c,help[blen++]);
}
blen += 1; /* Account for the header line(s). */ blen++; /* Account for the header line(s). */
setDeferredMultiBulkLength(c,blenp,blen); setDeferredMultiBulkLength(c,blenp,blen);
} }
......
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