From ccb9438d6983d57924a3731f97fd28c2bebccee8 Mon Sep 17 00:00:00 2001 From: Matteo Flebus Date: Fri, 16 Jan 2026 20:32:56 +0100 Subject: [PATCH] fix(ast): the same typo --- src/utils/ast/ast_end.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/ast/ast_end.h b/src/utils/ast/ast_end.h index e4e16c8..f86e477 100644 --- a/src/utils/ast/ast_end.h +++ b/src/utils/ast/ast_end.h @@ -15,6 +15,6 @@ bool ast_is_end(struct ast *node); * Creates a new AST node representing the end of input. * WARNING: data will be a NULL pointer */ -struct ast *ast_create_end(end); +struct ast *ast_create_end(void); #endif /* ! AST_END_H */