be sure that we fill the line with space when saving the status file
This commit is contained in:
parent
0f6aa0581b
commit
5c7f3835f2
1 changed files with 1 additions and 1 deletions
|
|
@ -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())
|
||||
|
|
|
|||
Reference in a new issue