From 6f739fab89c3dc3af401ad3e5f7dba16e74511fe Mon Sep 17 00:00:00 2001 From: tzyvoski <67583725+tzyvoski@users.noreply.github.com> Date: Sat, 21 May 2022 20:23:43 +0200 Subject: [PATCH] Fixed warning --- src/compiler/parse.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/compiler/parse.c b/src/compiler/parse.c index 9424cfb..ef5f67b 100644 --- a/src/compiler/parse.c +++ b/src/compiler/parse.c @@ -1795,7 +1795,7 @@ static Node *parse_ifelse_statement(Context *ctx) static Node *parse_compound_statement(Context *ctx, TokenKind end) { - int end_offset; + int end_offset = 0; Node *head, **tail; tail = &head;