--- src/bench/graphene-bench-utils.c.old 2018-10-03 09:48:16.972602000 -0500 +++ src/bench/graphene-bench-utils.c 2018-10-03 09:48:54.085498000 -0500 @@ -271,7 +271,7 @@ { const char *d_unit, *round_unit, *iter_unit; double d = format_time (elapsed, &d_unit); - double round = format_time (avg, &round_unit); + double round_ = format_time (avg, &round_unit); double iter = format_time (avg / bench_unit_rounds, &iter_unit); switch (bench_output) @@ -283,7 +283,7 @@ " Per iteration: %.6f %s\n", path, (gint64) (num_rounds * bench_unit_rounds), impl, d, d_unit, num_rounds, - round, round_unit, bench_unit_rounds, + round_, round_unit, bench_unit_rounds, iter, iter_unit); break;