]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
fix prototype
authorBenjamin Peterson <benjamin@python.org>
Sun, 17 Oct 2010 21:20:58 +0000 (21:20 +0000)
committerBenjamin Peterson <benjamin@python.org>
Sun, 17 Oct 2010 21:20:58 +0000 (21:20 +0000)
Objects/dictobject.c

index 7fd586b3d99c3087ae3e4efac97e3fbce8122e2b..f676aa0dd9d36d4bde81b16c2ba15d2e896c3690 100644 (file)
@@ -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;