really fix #3079 (Spelling error in unsigned variable check 'never alwayw')

This commit is contained in:
Robert Reif 2011-09-05 09:48:59 -04:00
parent 2250a2dfc3
commit b27bbea44a
1 changed files with 1 additions and 1 deletions

View File

@ -2554,6 +2554,6 @@ void CheckOther::unsignedPositiveError(const Token *tok, const std::string &varn
{
reportError(tok, Severity::style, "unsignedPositive",
"Checking if unsigned variable '" + varname + "' is positive is always true.\n"
"An unsigned variable will never be positive so it is either pointless or "
"An unsigned variable will always be positive so it is either pointless or "
"an error to check if it is.");
}