From 1006fa0b63693f5abe91c371462fd162a79e5b38 Mon Sep 17 00:00:00 2001 From: Gitea Date: Wed, 16 Dec 2020 16:37:25 -0600 Subject: [PATCH] FNM_NOMATCH can't be 0, so I changed it up --- include/fnmatch.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/include/fnmatch.h b/include/fnmatch.h index 3244f12..5941ef4 100644 --- a/include/fnmatch.h +++ b/include/fnmatch.h @@ -12,10 +12,10 @@ #ifndef _FNMATCH_H #define _FNMATCH_H -#define FNM_NOMATCH 0 -#define FNM_PATHNAME 1 -#define FNM_PERIOD 2 -#define FNM_NOESCAPE 3 +#define FNM_NOMATCH 1 +#define FNM_PATHNAME 2 +#define FNM_PERIOD 3 +#define FNM_NOESCAPE 4 int fnmatch(const char *, const char *, int);