summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2014-12-08 16:05:19 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2014-12-08 16:05:19 (GMT)
commitd86c0849b3c0ed313c45e7fb28c62df8577fb690 (patch)
treec1ea7b44eea68251d0cdff33b87f85585c43ebc3
parent9bc29d1afe15b7443e80d244c358d0c77ccab126 (diff)
downloadtcl-d86c0849b3c0ed313c45e7fb28c62df8577fb690.zip
tcl-d86c0849b3c0ed313c45e7fb28c62df8577fb690.tar.gz
tcl-d86c0849b3c0ed313c45e7fb28c62df8577fb690.tar.bz2
Fix some gcc compiler warnings (probably cygwin-only)
-rw-r--r--generic/tclCompExpr.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/generic/tclCompExpr.c b/generic/tclCompExpr.c
index 7b67970..23dc0a4 100644
--- a/generic/tclCompExpr.c
+++ b/generic/tclCompExpr.c
@@ -1883,7 +1883,7 @@ ParseLexeme(
case 'i':
if ((numBytes > 1) && (start[1] == 'n')
- && ((numBytes == 2) || start[2] & 0x80 || !isalpha(start[2]))) {
+ && ((numBytes == 2) || start[2] & 0x80 || !isalpha(UCHAR(start[2])))) {
/*
* Must make this check so we can tell the difference between
@@ -1898,7 +1898,7 @@ ParseLexeme(
case 'e':
if ((numBytes > 1) && (start[1] == 'q')
- && ((numBytes == 2) || start[2] & 0x80 || !isalpha(start[2]))) {
+ && ((numBytes == 2) || start[2] & 0x80 || !isalpha(UCHAR(start[2])))) {
*lexemePtr = STREQ;
return 2;
}
@@ -1906,7 +1906,7 @@ ParseLexeme(
case 'n':
if ((numBytes > 1)
- && ((numBytes == 2) || start[2] & 0x80 || !isalpha(start[2]))) {
+ && ((numBytes == 2) || start[2] & 0x80 || !isalpha(UCHAR(start[2])))) {
switch (start[1]) {
case 'e':
*lexemePtr = STRNEQ;