From 1fa22a87803a9fd2f38dce55fef45072ab2ea8ed Mon Sep 17 00:00:00 2001 From: Madhusoodan Pataki Date: Tue, 13 Jan 2026 17:53:16 +0530 Subject: Remove unused label_counter parameter from emit_match_logic --- plugins/regex.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/regex.c b/plugins/regex.c index b56515c..8fe7c67 100644 --- a/plugins/regex.c +++ b/plugins/regex.c @@ -5,7 +5,7 @@ #include #include -static void emit_match_logic(const char *pattern, FILE *out, int *label_counter); +static void emit_match_logic(const char *pattern, FILE *out); void regex_transpile(const char *input_body, const ZApi *api) { @@ -47,7 +47,7 @@ void regex_transpile(const char *input_body, const ZApi *api) free(pattern); } -static void emit_match_logic(const char *pattern, FILE *out, int * /*label_counter*/) +static void emit_match_logic(const char *pattern, FILE *out) { const char *c = pattern; -- cgit v1.2.3