diff options
author | Steve Raasch <sraasch@umich.edu> | 2003-11-07 08:35:55 -0500 |
---|---|---|
committer | Steve Raasch <sraasch@umich.edu> | 2003-11-07 08:35:55 -0500 |
commit | 541598bc6f0d038e0eb65fb2744a48700bd8106a (patch) | |
tree | 29c7a328a50850d7df5eebca18dc7a7b4bb3f373 /base | |
parent | 7f7dcf4e1fb0bcbf1ca60c345ce47f4eaf7cfb28 (diff) | |
download | gem5-541598bc6f0d038e0eb65fb2744a48700bd8106a.tar.xz |
It's important that there be white-space between each element
of a printed statistics line.
base/statistics.cc:
Add spaces between printed elements
--HG--
extra : convert_revision : edcc9460fa178c39f7e3c15b3bad866ef9b263e4
Diffstat (limited to 'base')
-rw-r--r-- | base/statistics.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/base/statistics.cc b/base/statistics.cc index cc7d60b0b..69b663dbb 100644 --- a/base/statistics.cc +++ b/base/statistics.cc @@ -592,13 +592,13 @@ PrintOne(ostream &stream, result_t value, #ifdef STAT_DISPLAY_COMPAT if (flags & __substat) { - ccprintf(stream, "%32s%12s%10s%10s", name, + ccprintf(stream, "%32s %12s %10s %10s", name, ValueToString(value, precision), pdfstr, cdfstr); } else #endif { - ccprintf(stream, "%-40s%12s%10s%10s", name, + ccprintf(stream, "%-40s %12s %10s %10s", name, ValueToString(value, precision), pdfstr, cdfstr); } |