Skip to content

Commit 633812f

Browse files
authored
Merge pull request #833 from fredsa/patch-3
Fix histogram formatting
2 parents 9d82fdb + 6b3a655 commit 633812f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/fe-inspect.cc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ static nanoseconds_t guessClock(const Fluxmap& fluxmap)
106106
s += BLOCK_ELEMENTS[bar & 7];
107107

108108
std::cout << fmt::format(
109-
"{: 3} {:.2f} {:6} {}", i, (double)i * US_PER_TICK, value, s);
109+
"{: 3} {:.2f} {:7} {}", i, (double)i * US_PER_TICK, value, s);
110110
std::cout << std::endl;
111111
}
112112
}
@@ -284,3 +284,4 @@ int mainInspect(int argc, const char* argv[])
284284

285285
return 0;
286286
}
287+

0 commit comments

Comments
 (0)