aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoseph Hunkeler <jhunkeler@gmail.com>2021-05-06 17:26:04 -0400
committerJoseph Hunkeler <jhunkeler@gmail.com>2021-05-06 17:26:04 -0400
commitbceb1cfc6cb7085b417b263788b39c2f1a20fedd (patch)
tree3d366304fbd9382ab6b2fa4384f6b165b524a37e
parente8c765c55ca00a484c69c3e7a6150bff975a06a8 (diff)
downloadcleanpath-bceb1cfc6cb7085b417b263788b39c2f1a20fedd.tar.gz
Fix missing semi-colon
-rw-r--r--lib/cleanpath.c2
1 files changed, 1 insertions, 1 deletions
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(&regex, path->part[i], 0, NULL, 0) == 0 ? 1 : 0;
regfree(&regex);
#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: