diff --git a/src/redis-benchmark.c b/src/redis-benchmark.c index ef8d8ff8304c83010e2197efe8440588f8e75454..ddf891e2d83dcee5dba7390d473020f7a6410e51 100644 --- a/src/redis-benchmark.c +++ b/src/redis-benchmark.c @@ -213,11 +213,11 @@ static void readHandler(aeEventLoop *el, int fd, void *privdata, int mask) { } freeReplyObject(reply); - // This is an OK for prefix commands such as auth and select. + /* This is an OK for prefix commands such as auth and select.*/ if (c->prefix_pending > 0) { c->prefix_pending--; c->pending--; - // Discard prefix commands on first response. + /* Discard prefix commands on first response.*/ if (c->prefixlen > 0) { size_t j; sdsrange(c->obuf, c->prefixlen, -1);