Fix typo in "internal error" message

This commit is contained in:
Thomas Jarosch 2015-01-12 23:09:17 +01:00
parent 68bb197bcb
commit c92d861b1e
2 changed files with 2 additions and 2 deletions

View File

@ -256,7 +256,7 @@ unsigned int CppCheck::processFile(const std::string& filename, std::istream& fi
void CppCheck::internalError(const std::string &filename, const std::string &msg)
{
const std::string fixedpath = Path::toNativeSeparators(filename);
const std::string fullmsg("Bailing out from checking " + fixedpath + " since there was a internal error: " + msg);
const std::string fullmsg("Bailing out from checking " + fixedpath + " since there was an internal error: " + msg);
if (_settings.isEnabled("information")) {
const ErrorLogger::ErrorMessage::FileLocation loc1(filename, 0);

View File

@ -134,7 +134,7 @@ public:
private:
/** @brief There has been a internal error => Report information message */
/** @brief There has been an internal error => Report information message */
void internalError(const std::string &filename, const std::string &msg);
/**