diff options
author | Neal Norwitz <nnorwitz@gmail.com> | 2002-03-20 21:32:07 (GMT) |
---|---|---|
committer | Neal Norwitz <nnorwitz@gmail.com> | 2002-03-20 21:32:07 (GMT) |
commit | 3afb2d2bba9d492c1f2c889954bc0d32d93955ab (patch) | |
tree | 4c202f4dbbbdd973b302d9eb1f939059a60e933f /Modules/stropmodule.c | |
parent | bcc2c125f832dce5ec7f29f3e363e3769673713d (diff) | |
download | cpython-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/stropmodule.c')
-rw-r--r-- | Modules/stropmodule.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/stropmodule.c b/Modules/stropmodule.c index 54d444f..3c69fb3 100644 --- a/Modules/stropmodule.c +++ b/Modules/stropmodule.c @@ -766,7 +766,7 @@ strop_atoi(PyObject *self, PyObject *args) x = (long) PyOS_strtoul(s, &end, base); else x = PyOS_strtol(s, &end, base); - if (end == s || !isalnum(end[-1])) + if (end == s || !isalnum((int)end[-1])) goto bad; while (*end && isspace(Py_CHARMASK(*end))) end++; |