summaryrefslogtreecommitdiff
path: root/plugins/regex.c
diff options
context:
space:
mode:
authorZuhaitz <zuhaitz.zechhub@gmail.com>2026-01-13 14:50:43 +0000
committerGitHub <noreply@github.com>2026-01-13 14:50:43 +0000
commit7eb91d69beb19da7a7cb7ac84625f701890ce6eb (patch)
tree4b86f4ad20a66b0e984feb4d5a2abaf6eaa1227f /plugins/regex.c
parent8fc9c88304fde65d6c3a619c3aee7e6e00540695 (diff)
parent856267f36e60211ba537d63a80c5d36aa4436a4f (diff)
Merge branch 'main' into pr-34-testing
Diffstat (limited to 'plugins/regex.c')
-rw-r--r--plugins/regex.c4
1 files 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 <stdlib.h>
#include <string.h>
-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;