Fixed warning

This commit is contained in:
tzyvoski
2022-05-21 20:23:43 +02:00
parent da616f03fe
commit 6f739fab89
+1 -1
View File
@@ -1795,7 +1795,7 @@ static Node *parse_ifelse_statement(Context *ctx)
static Node *parse_compound_statement(Context *ctx, TokenKind end) static Node *parse_compound_statement(Context *ctx, TokenKind end)
{ {
int end_offset; int end_offset = 0;
Node *head, **tail; Node *head, **tail;
tail = &head; tail = &head;