From c26ef65642ce5611e36437004fe135f2a1a23b4f Mon Sep 17 00:00:00 2001 From: jkh Date: Thu, 18 Dec 2003 10:41:39 +0000 Subject: Now I understand what Bruce was getting at - -1 can be parsed as two tokens, so it does indeed need to be parenthesized. Duh. Sometimes it can stare you right and the face and you still don't see it. Thanks, bde. --- include/fnmatch.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'include/fnmatch.h') diff --git a/include/fnmatch.h b/include/fnmatch.h index 3958338..f905ff6 100644 --- a/include/fnmatch.h +++ b/include/fnmatch.h @@ -46,7 +46,7 @@ #define FNM_PERIOD 0x04 /* Period must be matched by period. */ #if __XSI_VISIBLE -#define FNM_NOSYS -1 /* Reserved. */ +#define FNM_NOSYS (-1) /* Reserved. */ #endif #if __BSD_VISIBLE -- cgit v1.1