astyle formatting

This commit is contained in:
Daniel Marjamäki 2011-10-16 07:50:34 +02:00
parent 71a1d98693
commit d5883ef0c4
1 changed files with 2 additions and 2 deletions

View File

@ -150,14 +150,14 @@ void CheckNullPointer::parseFunctionCall(const Token &tok, std::list<const Token
for (; argListTok; argListTok = argListTok->next()) { // Find next argument
if (argListTok->str() == "(")
argListTok = argListTok->link();
if(argListTok == 0)
if (argListTok == 0)
break;
if (argListTok->str() == ",") {
argListTok = argListTok->next();
break;
}
}
if(!argListTok)
if (!argListTok)
break;
percent = false;
}