diff options
author | Guido van Rossum <guido@python.org> | 1998-04-10 22:27:42 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1998-04-10 22:27:42 (GMT) |
commit | 730806d3d9bd8c54466e4a864b2b1f94df4413d2 (patch) | |
tree | 95ef041ad6e66f6cfbee3b6f84de6542c2cd36a7 /Python/getargs.c | |
parent | 1109fbca76d08bb2f11f2899580d2ab7dbe796fa (diff) | |
download | cpython-730806d3d9bd8c54466e4a864b2b1f94df4413d2.zip cpython-730806d3d9bd8c54466e4a864b2b1f94df4413d2.tar.gz cpython-730806d3d9bd8c54466e4a864b2b1f94df4413d2.tar.bz2 |
Make new gcc -Wall happy
Diffstat (limited to 'Python/getargs.c')
-rw-r--r-- | Python/getargs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/getargs.c b/Python/getargs.c index 7bc150d..502944d 100644 --- a/Python/getargs.c +++ b/Python/getargs.c @@ -257,7 +257,7 @@ vgetargs1(args, format, p_va, compat) } } - if (*format != '\0' && !isalpha(*format) && + if (*format != '\0' && !isalpha((int)(*format)) && *format != '(' && *format != '|' && *format != ':' && *format != ';') { PyErr_Format(PyExc_SystemError, |