CLI: Couple of messages missing cppcheck-prefix.

This commit is contained in:
Kimmo Varis 2011-08-04 23:45:50 +03:00
parent a9153dc317
commit 57a51128a4
1 changed files with 2 additions and 2 deletions

View File

@ -603,13 +603,13 @@ bool CmdLineParser::ParseFromArgs(int argc, const char* const argv[])
if (_settings->isEnabled("unusedFunction") && _settings->_jobs > 1)
{
PrintMessage("unusedFunction check can't be used with -j option, so it was disabled.");
PrintMessage("cppcheck: unusedFunction check can't be used with -j option, so it was disabled.");
}
// FIXME: Make the _settings.test_2_pass thread safe
if (_settings->test_2_pass && _settings->_jobs > 1)
{
PrintMessage("--test-2-pass doesn't work with -j option yet.");
PrintMessage("cppcheck: --test-2-pass doesn't work with -j option yet.");
}
if (argc <= 1)