diff options
-rw-r--r-- | src/parse.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/parse.c b/src/parse.c index a294898..511cb18 100644 --- a/src/parse.c +++ b/src/parse.c @@ -664,7 +664,7 @@ parse_disjunction_e(struct lexer *lexer, struct disjunction_e *out) static bool parse_expr(struct lexer *lexer, struct ast_expr *out) { - return !parse_disjunction_e(lexer, &out->dis); + return parse_disjunction_e(lexer, &out->dis); } static bool |