add an extra space in memString()

metadata
Wenzel Jakob 2013-09-06 10:56:36 +02:00
parent 11452f7c86
commit 70ad3fbd62
1 changed files with 1 additions and 1 deletions

View File

@ -829,7 +829,7 @@ std::string memString(size_t size, bool precise) {
std::ostringstream os;
os << std::setprecision(suffix == 0 ? 0 : (precise ? 4 : 1))
<< std::fixed << value << suffixes[suffix];
<< std::fixed << value << " " << suffixes[suffix];
return os.str();
}