diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2014-12-08 16:05:19 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2014-12-08 16:05:19 (GMT) |
commit | d86c0849b3c0ed313c45e7fb28c62df8577fb690 (patch) | |
tree | c1ea7b44eea68251d0cdff33b87f85585c43ebc3 /generic/tclCompExpr.c | |
parent | 9bc29d1afe15b7443e80d244c358d0c77ccab126 (diff) | |
download | tcl-d86c0849b3c0ed313c45e7fb28c62df8577fb690.zip tcl-d86c0849b3c0ed313c45e7fb28c62df8577fb690.tar.gz tcl-d86c0849b3c0ed313c45e7fb28c62df8577fb690.tar.bz2 |
Fix some gcc compiler warnings (probably cygwin-only)
Diffstat (limited to 'generic/tclCompExpr.c')
-rw-r--r-- | generic/tclCompExpr.c | 6 |
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; |