From: antirez Date: Thu, 15 Sep 2011 17:32:25 +0000 (+0200) Subject: Fixed a bug in the average latency metering of redis-cli --latency X-Git-Url: https://git.saurik.com/redis.git/commitdiff_plain/96674b6d95c8990cc7dae885b27c76f377ddeb91?ds=inline Fixed a bug in the average latency metering of redis-cli --latency --- diff --git a/src/redis-cli.c b/src/redis-cli.c index 3bda064c..328cd3df 100644 --- a/src/redis-cli.c +++ b/src/redis-cli.c @@ -765,6 +765,7 @@ static void latencyMode(void) { } else { if (latency < min) min = latency; if (latency > max) max = latency; + tot += latency; avg = (double) tot/count; } printf("\x1b[0G\x1b[2Kmin: %lld, max: %lld, avg: %.2f (%lld samples)",