From c8413a9a04d672801498ab244bf3126a49ee3e36 Mon Sep 17 00:00:00 2001 From: Dale Weiler Date: Mon, 14 Oct 2013 21:03:24 -0400 Subject: [PATCH] Clang is so anal --- ast.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)) { -- 2.39.2