diff --git a/src/redis-benchmark.c b/src/redis-benchmark.c index 032b38f0..8a0f3088 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);