From b7a15524404ee316e205a26c214ca8d3f04f11a3 Mon Sep 17 00:00:00 2001 From: Christopher Faylor Date: Mon, 4 May 2009 04:30:37 +0000 Subject: * libc/minires.c (scanline): Accommodate ctype changes which disallow use of an unadorned char argument to is* macros. * regex/regcomp.c: Ditto, throughout. * regex/regex2.h (ISWORD): Ditto. --- winsup/cygwin/regex/regex2.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'winsup/cygwin/regex/regex2.h') diff --git a/winsup/cygwin/regex/regex2.h b/winsup/cygwin/regex/regex2.h index 8c103fa54..be8b2f5a7 100644 --- a/winsup/cygwin/regex/regex2.h +++ b/winsup/cygwin/regex/regex2.h @@ -131,4 +131,4 @@ struct re_guts { /* misc utilities */ #define OUT (CHAR_MAX+1) /* a non-character value */ -#define ISWORD(c) (isalnum(c) || (c) == '_') +#define ISWORD(c) (isalnum((unsigned)c) || (c) == '_') -- cgit v1.2.3