From 7a68d1106b37e16c24e58bc77ce49fc6beadce9c Mon Sep 17 00:00:00 2001 From: Kimplul Date: Fri, 1 May 2026 14:40:06 +0300 Subject: run formatter + Should really get this done automatically somehow --- src/rewrite.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'src/rewrite.c') diff --git a/src/rewrite.c b/src/rewrite.c index e3cea01..c5a497a 100644 --- a/src/rewrite.c +++ b/src/rewrite.c @@ -36,7 +36,9 @@ static int rewrite_type_visit(struct ast *node, struct type_helper *helper) int rewrite_types(struct ast *node, char *orig, char *new) { struct type_helper helper = {.orig = orig, .new = new}; - return ast_visit((ast_callback_t)rewrite_type_visit, NULL, node, &helper); + return ast_visit((ast_callback_t)rewrite_type_visit, NULL, node, + &helper + ); } /* not the fastest thing in the world but should work well enough for now */ -- cgit v1.2.3