From: Benjamin Peterson Date: Sun, 17 Oct 2010 21:20:58 +0000 (+0000) Subject: fix prototype X-Git-Tag: v3.2a4~456 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e6baa46aab0e37c755c94b5aa513fff43fd57456;p=thirdparty%2FPython%2Fcpython.git fix prototype --- diff --git a/Objects/dictobject.c b/Objects/dictobject.c index 7fd586b3d99c..f676aa0dd9d3 100644 --- a/Objects/dictobject.c +++ b/Objects/dictobject.c @@ -148,7 +148,7 @@ _PyDict_Dummy(void) /* forward declarations */ static PyDictEntry * -lookdict_unicode(PyDictObject *mp, PyObject *key, long hash); +lookdict_unicode(PyDictObject *mp, PyObject *key, Py_hash_t hash); #ifdef SHOW_CONVERSION_COUNTS static long created = 0L;