Clang is so anal

This commit is contained in:
Dale Weiler 2013-10-14 21:03:24 -04:00
parent 8e8b3608fb
commit c8413a9a04

2
ast.c
View file

@ -529,7 +529,7 @@ ast_unary* ast_unary_new(lex_ctx_t ctx, int op,
ast_unary *prev = (ast_unary*)((ast_unary*)expr)->operand;
/* Handle for double negation */
if ((((ast_unary*)expr)->op == op))
if (((ast_unary*)expr)->op == op)
prev = (ast_unary*)((ast_unary*)expr)->operand;
if (ast_istype(prev, ast_unary)) {