From: Andrew M. Kuchling Date: Thu, 22 Feb 2001 15:52:55 +0000 (+0000) Subject: Patch #103926: fix two warnings from Tru64's compiler X-Git-Tag: v2.1b1~233 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=a1a690fa9cf3f2f02aec97119a3a81806bb247ac;p=python Patch #103926: fix two warnings from Tru64's compiler --- diff --git a/Modules/dlmodule.c b/Modules/dlmodule.c index b7cd35b3d8..bb49a50007 100644 --- a/Modules/dlmodule.c +++ b/Modules/dlmodule.c @@ -86,7 +86,9 @@ dl_call(dlobject *xp, PyObject *args) "function name must be a string"); return NULL; } - func = dlsym(xp->dl_handle, PyString_AsString(name)); + func = (long (*)(long, long, long, long, long, + long, long, long, long, long)) + dlsym(xp->dl_handle, PyString_AsString(name)); if (func == NULL) { PyErr_SetString(PyExc_ValueError, dlerror()); return NULL; diff --git a/Modules/zlibmodule.c b/Modules/zlibmodule.c index 3d77fcaf66..fbb8ecea37 100644 --- a/Modules/zlibmodule.c +++ b/Modules/zlibmodule.c @@ -492,7 +492,7 @@ PyZlib_objdecompress(compobject *self, PyObject *args) behaviour of only calling it on flush() is preserved.*/ if (err == Z_STREAM_END) { Py_XDECREF(self->unused_data); /* Free the original, empty string */ - self->unused_data = PyString_FromStringAndSize(self->zst.next_in, + self->unused_data = PyString_FromStringAndSize((char *)self->zst.next_in, self->zst.avail_in); if (self->unused_data == NULL) { PyErr_SetString(PyExc_MemoryError,