Fixed typo in comment, no functional changes [ci-skip]

This commit is contained in:
orbitcowboy 2014-05-23 22:31:01 +02:00
parent 6183f21070
commit d299cae5ef
1 changed files with 1 additions and 1 deletions

View File

@ -285,7 +285,7 @@ private:
if (!Token::Match(c->var->typeStartToken(), "char|wchar_t")) {
continue;
}
if (Token::Match(tok->next(), "[")) { // Check if it's not being accesed like: 'str[1]'
if (Token::Match(tok->next(), "[")) { // Check if it's not being accessed like: 'str[1]'
continue;
}
checkUninitVar->uninitstringError(tok, c->var->name(), c->strncpy_);