commit | e6baa46aab0e37c755c94b5aa513fff43fd57456 | [log] [tgz] |
---|---|---|
author | Benjamin Peterson <benjamin@python.org> | Sun Oct 17 21:20:58 2010 +0000 |
committer | Benjamin Peterson <benjamin@python.org> | Sun Oct 17 21:20:58 2010 +0000 |
tree | 436d3b815046105ea516e0a085b920a4a45d0f30 | |
parent | 223f091737078cac481d2df99f22a9057d457885 [diff] [blame] |
fix prototype
diff --git a/Objects/dictobject.c b/Objects/dictobject.c index 7fd586b..f676aa0 100644 --- a/Objects/dictobject.c +++ b/Objects/dictobject.c
@@ -148,7 +148,7 @@ /* 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;