mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-07-07 20:06:36 +02:00
Cleanup: Don't use string literals when character literals are needed
This commit is contained in:
parent
5403675100
commit
95f4989f77
58 changed files with 372 additions and 374 deletions
|
@ -212,11 +212,11 @@ int CmdSummary::execute (std::string& output)
|
|||
<< view.render ()
|
||||
<< optionalBlankLine ();
|
||||
|
||||
out << format (STRING_CMD_PROJECTS_SUMMARY2, view.rows ()) << "\n";
|
||||
out << format (STRING_CMD_PROJECTS_SUMMARY2, view.rows ()) << '\n';
|
||||
}
|
||||
else
|
||||
{
|
||||
out << STRING_CMD_PROJECTS_NO << "\n";
|
||||
out << STRING_CMD_PROJECTS_NO << '\n';
|
||||
rc = 1;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue