From 699f72e5687537dd4eded52fbe636a270a0f0580 Mon Sep 17 00:00:00 2001 From: Jerome Schneider Date: Thu, 9 Apr 2009 16:55:39 +0000 Subject: Fix build issues on amd64 / gcc 4.3 * bindings/java/lang.py: fix cast issue * bindings/python/wrapper_top.c fix type issue * lasso/registry.c fix cast issue --- bindings/python/wrapper_top.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bindings/python') diff --git a/bindings/python/wrapper_top.c b/bindings/python/wrapper_top.c index c703b927..333d4b88 100644 --- a/bindings/python/wrapper_top.c +++ b/bindings/python/wrapper_top.c @@ -118,7 +118,7 @@ free_list(GList **a_list, GFunc free_help) { static void set_hashtable_of_pygobject(GHashTable *a_hash, PyObject *dict) { PyObject *key, *value; - int i; + Py_ssize_t i; if (! a_hash) { PyErr_SetString(PyExc_TypeError, "hashtable does not exist"); -- cgit