gcc-2.96 warning fixes

git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@8696 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
William S Fulton 2006-02-03 22:13:07 +00:00
commit e3186ff0eb
2 changed files with 4 additions and 4 deletions

View file

@ -840,7 +840,7 @@ expand_macro(String *name, List *args)
a = strstr(s,name);
while (a) {
char ca = a[namelen+1];
if (!isidchar(ca)) {
if (!isidchar((int)ca)) {
/* Matched the entire vararg name, not just a prefix */
t = a-1;
if (*t == '\002') {