diff --git a/src/config.cpp b/src/config.cpp index 4e9948947d33..0901501e72ee 100644 --- a/src/config.cpp +++ b/src/config.cpp @@ -1247,7 +1247,7 @@ std::ostream& operator<<(std::ostream& outstream, const config& cfg) } for(int j = 0; j < i - 1; j++) { - outstream << static_cast(9); + outstream << '\t'; } outstream << val.first << " = " << val.second << '\n'; @@ -1255,14 +1255,14 @@ std::ostream& operator<<(std::ostream& outstream, const config& cfg) for(const config::any_child& child : cfg.all_children_range()) { for(int j = 0; j < i - 1; ++j) { - outstream << static_cast(9); + outstream << '\t'; } outstream << "[" << child.key << "]\n"; outstream << child.cfg; for(int j = 0; j < i - 1; ++j) { - outstream << static_cast(9); + outstream << '\t'; } outstream << "[/" << child.key << "]\n";