From caef93d82c3bfdad652564540e8717f2cf522af0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20v=2E=20L=C3=B6wis?= Date: Sat, 8 Sep 2001 16:23:34 +0000 Subject: Silence warnings about passing unsigned char** as char**. --- Modules/zlibmodule.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Modules/zlibmodule.c b/Modules/zlibmodule.c index f013647..1d038c7 100644 --- a/Modules/zlibmodule.c +++ b/Modules/zlibmodule.c @@ -125,7 +125,7 @@ PyZlib_compress(PyObject *self, PyObject *args) return NULL; /* now get a pointer to the internal string */ - if (PyString_AsStringAndSize(inputString, &input, &length) == -1) + if (PyString_AsStringAndSize(inputString, (char**)&input, &length) == -1) return NULL; zst.avail_out = length + length/1000 + 12 + 1; @@ -249,7 +249,7 @@ PyZlib_decompress(PyObject *self, PyObject *args) if (!PyArg_ParseTuple(args, "S|ii:decompress", &inputString, &wsize, &r_strlen)) return NULL; - if (PyString_AsStringAndSize(inputString, &input, &length) == -1) + if (PyString_AsStringAndSize(inputString, (char**)&input, &length) == -1) return NULL; if (r_strlen <= 0) @@ -523,7 +523,7 @@ PyZlib_objcompress(compobject *self, PyObject *args) if (!PyArg_ParseTuple(args, "S:compress", &inputString)) return NULL; - if (PyString_AsStringAndSize(inputString, &input, &inplen) == -1) + if (PyString_AsStringAndSize(inputString, (char**)&input, &inplen) == -1) return NULL; if (!(RetVal = PyString_FromStringAndSize(NULL, length))) { @@ -613,7 +613,7 @@ PyZlib_objdecompress(compobject *self, PyObject *args) if (!PyArg_ParseTuple(args, "S:decompress", &inputString)) return NULL; - if (PyString_AsStringAndSize(inputString, &input, &inplen) == -1) + if (PyString_AsStringAndSize(inputString, (char**)&input, &inplen) == -1) return NULL; if (!(RetVal = PyString_FromStringAndSize(NULL, length))) { -- cgit v0.12