Commit a2403227 authored by Salvatore Sanfilippo's avatar Salvatore Sanfilippo
Browse files

Merge pull request #1772 from andygrunwald/typo-avarege-average

Fixed typo in word avarege in result message of --intrinsic-latency analyzer
parents 113be482 94e3bb56
......@@ -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);
}
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment