Fixed mistake in verbose message.

This commit is contained in:
PKEuS 2013-03-29 11:27:54 -07:00
parent c733928505
commit 4fc92f4c27
1 changed files with 1 additions and 1 deletions

View File

@ -2062,7 +2062,7 @@ void CheckOther::checkMemsetZeroBytes()
void CheckOther::memsetZeroBytesError(const Token *tok, const std::string &varname)
{
const std::string summary("memset() called to fill 0 bytes of '" + varname + "'.");
const std::string verbose(summary + ". Second and third arguments might be inverted.");
const std::string verbose(summary + " Second and third arguments might be inverted.");
reportError(tok, Severity::warning, "memsetZeroBytes", summary + "\n" + verbose);
}