diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2021-05-06 17:26:04 -0400 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2021-05-06 17:26:04 -0400 |
commit | bceb1cfc6cb7085b417b263788b39c2f1a20fedd (patch) | |
tree | 3d366304fbd9382ab6b2fa4384f6b165b524a37e | |
parent | e8c765c55ca00a484c69c3e7a6150bff975a06a8 (diff) | |
download | cleanpath-bceb1cfc6cb7085b417b263788b39c2f1a20fedd.tar.gz |
Fix missing semi-colon
-rw-r--r-- | lib/cleanpath.c | 2 |
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(®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: |