From 3c68d6c612329ea7e85e59ffe93cffe0b9ab7019 Mon Sep 17 00:00:00 2001 From: Donald Buczek Date: Mon, 26 Sep 2022 07:02:20 +0200 Subject: [PATCH] Remove doubled semicolon --- cmirror.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmirror.c b/cmirror.c index 7594397..3a7f3db 100644 --- a/cmirror.c +++ b/cmirror.c @@ -60,7 +60,7 @@ static G_NORETURN G_GNUC_PRINTF(1, 2) void die(const char *restrict fmt, ...) { static GRegex *compile_pattern(char *pattern) { GError *error = NULL; - GRegex *regex = g_regex_new(pattern, 0, 0, &error);; + GRegex *regex = g_regex_new(pattern, 0, 0, &error); if (!regex) die("%s\n", error->message); return regex;