mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-09-05 04:57:21 +02:00
Cleanup: Don't use string literals when character literals are needed
This commit is contained in:
parent
95f4989f77
commit
8922728888
27 changed files with 122 additions and 122 deletions
|
@ -798,7 +798,7 @@ CmdEdit::editResult CmdEdit::editFile (Task& task)
|
|||
|
||||
// Complete the command line.
|
||||
editor += ' ';
|
||||
editor += "\"" + file.str () + "\"";
|
||||
editor += '"' + file.str () + '"';
|
||||
|
||||
ARE_THESE_REALLY_HARMFUL:
|
||||
bool changes = false; // No changes made.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue