diff options
| author | Zuhaitz <zuhaitz.zechhub@gmail.com> | 2026-01-13 14:15:15 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-01-13 14:15:15 +0000 |
| commit | 058afa8c4a7cddad5d57536834356d5f72d57664 (patch) | |
| tree | aa2dcb98e3a6790836bf2607d6529ecae4b2bf10 | |
| parent | 791a6ab50150eb895282c2e3561fec71a6695f25 (diff) | |
| parent | 1fa22a87803a9fd2f38dce55fef45072ab2ea8ed (diff) | |
Merge pull request #28 from mmpataki/main
27 : Remove unused label_counter parameter from emit_match_logic
| -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; |
