From 67d76ac8952c8f5cc3735c931254a3fc18708084 Mon Sep 17 00:00:00 2001 From: Matteo Flebus Date: Fri, 16 Jan 2026 20:31:30 +0100 Subject: [PATCH] fix(ast): typo --- src/utils/ast/ast_end.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/ast/ast_end.c b/src/utils/ast/ast_end.c index b2db692..3be1eeb 100644 --- a/src/utils/ast/ast_end.c +++ b/src/utils/ast/ast_end.c @@ -10,7 +10,7 @@ bool ast_is_end(struct ast *node) return node->type == AST_END; } -struct ast *ast_create_end(end) +struct ast *ast_create_end(void) { return ast_create(AST_END, NULL); }