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

This commit is contained in:
Paul Beckingham
2016-10-14 22:27:34 -04:00
parent 5403675100
commit 95f4989f77
58 changed files with 372 additions and 374 deletions

View File

@@ -72,7 +72,7 @@ int CmdLog::execute (std::string& output)
context.footnote (onProjectChange (task));
if (context.verbose ("new-uuid"))
output = format (STRING_CMD_LOG_LOGGED, task.get ("uuid")) + "\n";
output = format (STRING_CMD_LOG_LOGGED, task.get ("uuid")) + '\n';
return 0;
}