Cast added by Jack Jansen (for Mac port).

This commit is contained in:
Guido van Rossum 1999-04-12 14:35:48 +00:00
parent 0fe110548d
commit aee9bb2d0b
1 changed files with 2 additions and 1 deletions

View File

@ -508,7 +508,8 @@ PyZlib_objdecompress(self, args)
int pos = self->zst.next_in - input; /* Position in the string */
Py_XDECREF(self->unused_data); /* Free the original, empty string */
self->unused_data = PyString_FromStringAndSize(input+pos, inplen-pos);
self->unused_data = PyString_FromStringAndSize((char *)input+pos,
inplen-pos);
if (self->unused_data == NULL) return NULL;
}