Commit c1f08820 authored by Guido van Rossum's avatar Guido van Rossum

Added (binaryfunc) casts to function pointers in method lists.

parent 24a49941
......@@ -580,15 +580,15 @@ PyZlib_unflush(self, args)
static PyMethodDef comp_methods[] =
{
{"compress", PyZlib_objcompress, 1, comp_compress__doc__},
{"flush", PyZlib_flush, 0, comp_flush__doc__},
{"compress", (binaryfunc)PyZlib_objcompress, 1, comp_compress__doc__},
{"flush", (binaryfunc)PyZlib_flush, 0, comp_flush__doc__},
{NULL, NULL}
};
static PyMethodDef Decomp_methods[] =
{
{"decompress", PyZlib_objdecompress, 1, decomp_decompress__doc__},
{"flush", PyZlib_unflush, 0, decomp_flush__doc__},
{"decompress", (binaryfunc)PyZlib_objdecompress, 1, decomp_decompress__doc__},
{"flush", (binaryfunc)PyZlib_unflush, 0, decomp_flush__doc__},
{NULL, NULL}
};
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment