Skip to content

Commit

Permalink
Merge pull request #3192 from yebblies/comparezero
Browse files Browse the repository at this point in the history
[DDMD] [trivial] Explicitly compare with zero
  • Loading branch information
AndrejMitrovic committed Feb 3, 2014
2 parents 0be07f4 + 7f765a7 commit ea033ab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/apply.c
Expand Up @@ -156,7 +156,7 @@ int Expression::apply(apply_fp_t fp, void *param)
}
void visit(Expression *e)
{
stop = (*fp)(e, param);
stop = (*fp)(e, param) != 0;
}
};

Expand Down

0 comments on commit ea033ab

Please sign in to comment.