Fix more ssize_t issues.

This commit is contained in:
Martin v. Löwis 2006-04-22 11:40:03 +00:00
parent 26fd9607c7
commit 6685128b97
6 changed files with 13 additions and 13 deletions

View file

@ -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();