mirror of
https://github.com/postgres/postgres.git
synced 2025-06-16 06:01:02 +03:00
Big warnings cleanup for Solaris/GCC. Down to about 40 now, but
we'll get there one day. Use `cat' to create aclocal.m4, not `aclocal'. Some people don't have automake installed. Only run the autoconf rule in the top-level GNUmakefile if the invoker specified `make configure', don't run it automatically because of CVS timestamp skew.
This commit is contained in:
@ -15,7 +15,7 @@
|
||||
*
|
||||
*
|
||||
* IDENTIFICATION
|
||||
* $Header: /cvsroot/pgsql/src/backend/utils/adt/selfuncs.c,v 1.71 2000/06/14 05:24:49 tgl Exp $
|
||||
* $Header: /cvsroot/pgsql/src/backend/utils/adt/selfuncs.c,v 1.72 2000/06/14 18:17:45 petere Exp $
|
||||
*
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
@ -1383,7 +1383,7 @@ regex_fixed_prefix(char *patt, bool case_insensitive,
|
||||
patt[pos] == '(' ||
|
||||
patt[pos] == '[' ||
|
||||
patt[pos] == '$' ||
|
||||
(case_insensitive && isalpha(patt[pos])))
|
||||
(case_insensitive && isalpha((int) patt[pos])))
|
||||
break;
|
||||
/*
|
||||
* Check for quantifiers. Except for +, this means the preceding
|
||||
|
Reference in New Issue
Block a user