diff --git a/libc/fnmatch/fnmatch.c b/libc/fnmatch/fnmatch.c index d5b25c82..65c6baf1 100644 --- a/libc/fnmatch/fnmatch.c +++ b/libc/fnmatch/fnmatch.c @@ -22,7 +22,7 @@ #include #include -#define __FNM_NOT_LEADING (1 << 31) +#define __FNM_NOT_LEADING (1 << 30) // TODO: This doesn't properly handle multibyte sequences. // TODO: This doesn't fully implement all the POSIX requirements.