Commit fcc54cab authored by Jack Jansen's avatar Jack Jansen

Added a missing cast to the hashfunc initializer.

parent 0bb580d2
......@@ -56,7 +56,7 @@ PyTypeObject PyType_Type = {
0, /*tp_as_number*/
0, /*tp_as_sequence*/
0, /*tp_as_mapping*/
_Py_HashPointer, /*tp_hash*/
(hashfunc)_Py_HashPointer, /*tp_hash*/
0, /*tp_call*/
0, /*tp_str*/
0, /*tp_xxx1*/
......
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