From 5c7f3835f2036f021459d03514b0aa75082bea93 Mon Sep 17 00:00:00 2001 From: nojhan Date: Mon, 10 Oct 2011 21:11:03 +0200 Subject: [PATCH] be sure that we fill the line with space when saving the status file --- eo/src/utils/eoParser.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eo/src/utils/eoParser.cpp b/eo/src/utils/eoParser.cpp index e97a2a2e..fc1068b3 100644 --- a/eo/src/utils/eoParser.cpp +++ b/eo/src/utils/eoParser.cpp @@ -289,7 +289,7 @@ void eoParser::printOn(ostream& os) const string str = "--" + param->longName() + "=" + param->getValue(); os.setf(ios_base::left, ios_base::adjustfield); - os << setw(40) << str; + os << setfill(' ') << setw(40) << str; os << setw(0) << " # "; if (param->shortName())