From 44d1abebb48d678ac1b75f6556c68c9634cb235b Mon Sep 17 00:00:00 2001 From: Peter Eisentraut Date: Wed, 14 Jun 2000 18:18:01 +0000 Subject: 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. --- src/backend/commands/sequence.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/backend/commands/sequence.c') diff --git a/src/backend/commands/sequence.c b/src/backend/commands/sequence.c index f95d6fbb6c1..968ae569ee0 100644 --- a/src/backend/commands/sequence.c +++ b/src/backend/commands/sequence.c @@ -398,8 +398,8 @@ get_seq_name(text *seqin) */ for (; *rawname; rawname++) { - if (isascii((unsigned char) *rawname) && - isupper(*rawname)) + if (isascii((int) *rawname) && + isupper((int) *rawname)) *rawname = tolower(*rawname); } } -- cgit v1.2.3