summaryrefslogtreecommitdiffstats
path: root/Modules/zlibmodule.c
diff options
context:
space:
mode:
Diffstat (limited to 'Modules/zlibmodule.c')
-rw-r--r--Modules/zlibmodule.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Modules/zlibmodule.c b/Modules/zlibmodule.c
index 3426ccf..cecb9cf 100644
--- a/Modules/zlibmodule.c
+++ b/Modules/zlibmodule.c
@@ -915,7 +915,7 @@ PyDoc_STRVAR(adler32__doc__,
static PyObject *
PyZlib_adler32(PyObject *self, PyObject *args)
{
- unsigned int adler32val = adler32(0L, Z_NULL, 0);
+ uLong adler32val = 1; /* adler32(0L, Z_NULL, 0) */
Byte *buf;
int len;
@@ -934,7 +934,7 @@ PyDoc_STRVAR(crc32__doc__,
static PyObject *
PyZlib_crc32(PyObject *self, PyObject *args)
{
- unsigned int crc32val = crc32(0L, Z_NULL, 0);
+ uLong crc32val = 0; /* crc32(0L, Z_NULL, 0) */
Byte *buf;
int len;
if (!PyArg_ParseTuple(args, "s#|I:crc32", &buf, &len, &crc32val))