Skip to content

Commit

Permalink
Fix typo in "internal error" message
Browse files Browse the repository at this point in the history
thomasjfox committed Jan 12, 2015
1 parent 68bb197 commit c92d861
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/cppcheck.cpp
Original file line number Diff line number Diff line change
@@ -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);
2 changes: 1 addition & 1 deletion lib/cppcheck.h
Original file line number Diff line number Diff line change
@@ -134,7 +134,7 @@ class CPPCHECKLIB CppCheck : ErrorLogger {

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);

/**

0 comments on commit c92d861

Please sign in to comment.