From: Steve Raasch Date: Fri, 7 Nov 2003 13:35:55 +0000 (-0500) Subject: It's important that there be white-space between each element X-Git-Tag: m5_1.0_beta2~272 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=541598bc6f0d038e0eb65fb2744a48700bd8106a;p=gem5.git 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 --- 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); }