fix(ast): typo

This commit is contained in:
Matteo Flebus 2026-01-16 20:31:30 +01:00
parent 1cd827180a
commit 67d76ac895

View file

@ -10,7 +10,7 @@ bool ast_is_end(struct ast *node)
return node->type == AST_END; return node->type == AST_END;
} }
struct ast *ast_create_end(end) struct ast *ast_create_end(void)
{ {
return ast_create(AST_END, NULL); return ast_create(AST_END, NULL);
} }