diff options
Diffstat (limited to 'plugins')
| -rw-r--r-- | plugins/regex.c | 4 |
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; |
