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
This commit is contained in:
parent
7f7dcf4e1f
commit
541598bc6f
1 changed files with 2 additions and 2 deletions
|
@ -592,13 +592,13 @@ PrintOne(ostream &stream, result_t value,
|
||||||
|
|
||||||
#ifdef STAT_DISPLAY_COMPAT
|
#ifdef STAT_DISPLAY_COMPAT
|
||||||
if (flags & __substat) {
|
if (flags & __substat) {
|
||||||
ccprintf(stream, "%32s%12s%10s%10s", name,
|
ccprintf(stream, "%32s %12s %10s %10s", name,
|
||||||
ValueToString(value, precision),
|
ValueToString(value, precision),
|
||||||
pdfstr, cdfstr);
|
pdfstr, cdfstr);
|
||||||
} else
|
} else
|
||||||
#endif
|
#endif
|
||||||
{
|
{
|
||||||
ccprintf(stream, "%-40s%12s%10s%10s", name,
|
ccprintf(stream, "%-40s %12s %10s %10s", name,
|
||||||
ValueToString(value, precision), pdfstr, cdfstr);
|
ValueToString(value, precision), pdfstr, cdfstr);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue