Skip to content

Commit

Permalink
Fix printing units
Browse files Browse the repository at this point in the history
  • Loading branch information
joerowell committed Feb 6, 2024
1 parent e1f851c commit c89c6b4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/nodes/BandwidthTracker.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ class ActiveTracker {
void print() const noexcept {
for (unsigned i = 0; i < static_cast<unsigned>(Events::State::SIZE); i++) {
std::cerr << Events::as_string[i] << ":"
<< static_cast<double>(data[i]) / (1024. * 1024.) << " MB\n";
<< static_cast<double>(data[i]) / (1024. * 1024.) << " MiB\n";
}
std::cerr << "\n";
}
Expand Down

0 comments on commit c89c6b4

Please sign in to comment.