diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2006-04-22 11:40:03 +0000 |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2006-04-22 11:40:03 +0000 |
commit | 6685128b973981ff57b577f09b0a38e0071d272e (patch) | |
tree | c4d5536244f91e6c818b2ceb6335c56386156629 /Python/codecs.c | |
parent | 26fd9607c729f4dbe322967464834a2bce18c07d (diff) | |
download | cpython-git-6685128b973981ff57b577f09b0a38e0071d272e.tar.gz |
Fix more ssize_t issues.
Diffstat (limited to 'Python/codecs.c')
-rw-r--r-- | Python/codecs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/codecs.c b/Python/codecs.c index 2124824f6c..77eac8ef7d 100644 --- a/Python/codecs.c +++ b/Python/codecs.c @@ -95,7 +95,7 @@ PyObject *_PyCodec_Lookup(const char *encoding) { PyInterpreterState *interp; PyObject *result, *args = NULL, *v; - int i, len; + Py_ssize_t i, len; if (encoding == NULL) { PyErr_BadArgument(); |