Skip to content

Commit

Permalink
astyle fix
Browse files Browse the repository at this point in the history
  • Loading branch information
aggro80 committed Dec 3, 2009
1 parent 48bb1fd commit 2b980f9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/checkmemoryleak.cpp
Expand Up @@ -1800,7 +1800,8 @@ const Token *CheckMemoryLeakInFunction::findleak(const Token *tokens, bool all)
Token *tok2 = last->previous();
if (tok2)
{
if (Token::simpleMatch(tok2, ";")) {
if (Token::simpleMatch(tok2, ";"))
{
const Token *tok3 = tok2->previous();
if (tok3 && Token::simpleMatch(tok3, "exit"))
{
Expand Down

0 comments on commit 2b980f9

Please sign in to comment.