From: Dale Weiler Date: Tue, 15 Oct 2013 01:03:24 +0000 (-0400) Subject: Clang is so anal X-Git-Tag: 0.3.5~27 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=c8413a9a04d672801498ab244bf3126a49ee3e36;p=xonotic%2Fgmqcc.git Clang is so anal --- diff --git a/ast.c b/ast.c index cf03e01..cef33bd 100644 --- a/ast.c +++ b/ast.c @@ -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)) {