summaryrefslogtreecommitdiffstats
path: root/Modules/pyexpat.c
diff options
context:
space:
mode:
authorNeal Norwitz <nnorwitz@gmail.com>2002-03-20 21:32:07 (GMT)
committerNeal Norwitz <nnorwitz@gmail.com>2002-03-20 21:32:07 (GMT)
commit3afb2d2bba9d492c1f2c889954bc0d32d93955ab (patch)
tree4c202f4dbbbdd973b302d9eb1f939059a60e933f /Modules/pyexpat.c
parentbcc2c125f832dce5ec7f29f3e363e3769673713d (diff)
downloadcpython-3afb2d2bba9d492c1f2c889954bc0d32d93955ab.zip
cpython-3afb2d2bba9d492c1f2c889954bc0d32d93955ab.tar.gz
cpython-3afb2d2bba9d492c1f2c889954bc0d32d93955ab.tar.bz2
Remove compiler warnings on Solaris 8.
Can go into 2.2.x, but not necessary.
Diffstat (limited to 'Modules/pyexpat.c')
-rw-r--r--Modules/pyexpat.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/pyexpat.c b/Modules/pyexpat.c
index 3232e57..3153693 100644
--- a/Modules/pyexpat.c
+++ b/Modules/pyexpat.c
@@ -1366,7 +1366,7 @@ get_version_string(void)
char *rev = rcsid;
int i = 0;
- while (!isdigit(*rev))
+ while (!isdigit((int)*rev))
++rev;
while (rev[i] != ' ' && rev[i] != '\0')
++i;