From fcc54cab100108f97c5b5641e3df11b7614993c2 Mon Sep 17 00:00:00 2001 From: Jack Jansen Date: Sun, 10 Jun 2001 21:43:28 +0000 Subject: [PATCH] Added a missing cast to the hashfunc initializer. --- Objects/typeobject.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Objects/typeobject.c b/Objects/typeobject.c index 795714d8b52..ea3494eed2c 100644 --- a/Objects/typeobject.c +++ b/Objects/typeobject.c @@ -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*/