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

@ -140,7 +140,7 @@ int CmdDenotate::execute (std::string&)
}
else
{
std::cout << STRING_CMD_DENO_NO << "\n";
std::cout << STRING_CMD_DENO_NO << '\n';
rc = 1;
if (_permission_quit)
break;
@ -148,7 +148,7 @@ int CmdDenotate::execute (std::string&)
}
else
{
std::cout << format (STRING_CMD_DENO_NOMATCH, pattern) << "\n";
std::cout << format (STRING_CMD_DENO_NOMATCH, pattern) << '\n';
rc = 1;
}
}