From bceb1cfc6cb7085b417b263788b39c2f1a20fedd Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Thu, 6 May 2021 17:26:04 -0400 Subject: Fix missing semi-colon --- lib/cleanpath.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/cleanpath.c') diff --git a/lib/cleanpath.c b/lib/cleanpath.c index ab6525b..2337869 100644 --- a/lib/cleanpath.c +++ b/lib/cleanpath.c @@ -81,7 +81,7 @@ void cleanpath_filter(struct CleanPath *path, unsigned mode, const char *pattern match = regexec(®ex, path->part[i], 0, NULL, 0) == 0 ? 1 : 0; regfree(®ex); #else - fprintf(stderr, "WARNING: --regex|-r is not implemented on Windows. Using default filter mode.\n") + fprintf(stderr, "WARNING: --regex|-r is not implemented on Windows. Using default filter mode.\n"); #endif break; case CLEANPATH_FILTER_EXACT: -- cgit