Cleanup: Don't use string literals when character literals are needed

This commit is contained in:
Paul Beckingham
2016-10-14 23:11:28 -04:00
parent 95f4989f77
commit 8922728888
27 changed files with 122 additions and 122 deletions

View File

@@ -60,7 +60,7 @@ int CmdZshAttributes::execute (std::string& output)
std::stringstream out;
for (auto& col : columns)
out << col << ":" << col << '\n';
out << col << ':' << col << '\n';
output = out.str ();
return 0;