diff --git a/src/benchmark.cc b/src/benchmark.cc index 707e7e55..4344257c 100644 --- a/src/benchmark.cc +++ b/src/benchmark.cc @@ -371,7 +371,9 @@ void ConsoleReporter::PrintRunData(const BenchmarkRunData& result) { (result.cpu_accumulated_time * 1e9) / (static_cast(result.iterations))); ColorPrintf(COLOR_CYAN, "%10lld", result.iterations); - ColorPrintf(COLOR_DEFAULT, "%*s %s %s%s\n", 16, rate.c_str(), items.c_str(), + ColorPrintf(COLOR_DEFAULT, "%*s %*s %s%s\n", + 16, rate.c_str(), + 18, items.c_str(), result.report_label.c_str(), PrintMemoryUsage(result.max_heapbytes_used).c_str()); }