From 94e3bb568ac2cb7763a1caab299337ed72149e4c Mon Sep 17 00:00:00 2001 From: Andy Grunwald Date: Thu, 22 May 2014 20:01:12 +0200 Subject: Fixed typo in word avarege in result message of --intrinsic-latency analyzer --- src/redis-cli.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/redis-cli.c b/src/redis-cli.c index 58c15da42..b8e17d24e 100644 --- a/src/redis-cli.c +++ b/src/redis-cli.c @@ -1832,7 +1832,7 @@ static void intrinsicLatencyMode(void) { if (end > test_end) { printf("\n%lld total runs (avg %lld microseconds per run).\n", runs, run_time/runs); - printf("Worst run took %.02fx times the avarege.\n", + printf("Worst run took %.02fx times the average.\n", (double) max_latency / (run_time/runs)); exit(0); } -- cgit v1.2.1