From 6e3f2c626d965a8de228372b819fc65f0ba6da64 Mon Sep 17 00:00:00 2001 From: Christopher Faylor Date: Thu, 4 Feb 2010 21:05:07 +0000 Subject: * regcomp.c (p_ere): Workaround incorrect compiler warning. * regerror.c (regatoi): Return non-const string or compiler complains in certain inexplicable situations. --- winsup/cygwin/regex/regerror.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'winsup/cygwin/regex/regerror.c') diff --git a/winsup/cygwin/regex/regerror.c b/winsup/cygwin/regex/regerror.c index 7e88be5cb..1bba3e4a6 100644 --- a/winsup/cygwin/regex/regerror.c +++ b/winsup/cygwin/regex/regerror.c @@ -178,7 +178,7 @@ regatoi(const regex_t *preg, char *localbuf) if (r->code == 0) #ifdef __CYGWIN__ /* Avoid whining compiler */ { - static const char null[] = "0"; + static char null[] = "0"; return null; } #else -- cgit v1.2.3