Fixed typo in word avarege in result message of --intrinsic-latency analyzer

This commit is contained in:
Andy Grunwald 2014-05-22 20:01:12 +02:00 committed by antirez
parent b98ee12f61
commit 6ab4775a2a

View File

@ -1831,7 +1831,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);
}