mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-06-26 10:54:26 +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
|
@ -109,7 +109,7 @@ int CmdStart::execute (std::string&)
|
|||
}
|
||||
else
|
||||
{
|
||||
std::cout << STRING_CMD_START_NO << "\n";
|
||||
std::cout << STRING_CMD_START_NO << '\n';
|
||||
rc = 1;
|
||||
if (_permission_quit)
|
||||
break;
|
||||
|
@ -120,7 +120,7 @@ int CmdStart::execute (std::string&)
|
|||
std::cout << format (STRING_CMD_START_ALREADY,
|
||||
task.id,
|
||||
task.get ("description"))
|
||||
<< "\n";
|
||||
<< '\n';
|
||||
rc = 1;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue