diff options
| author | Simon McVittie <simon.mcvittie@collabora.co.uk> | 2007-01-16 17:41:45 +0000 |
|---|---|---|
| committer | Simon McVittie <simon.mcvittie@collabora.co.uk> | 2007-01-16 17:41:45 +0000 |
| commit | b33efe312c8d89ecc6e2ba9f075d2d0a9e28c3e1 (patch) | |
| tree | 208fe0020fa2e064d5f836eef11c53a0f1ca064c /_dbus_bindings/conn-methods.c | |
| parent | 4d7fac530ce82c3dc888248234b955c04c364ada (diff) | |
| download | dbus-python-b33efe312c8d89ecc6e2ba9f075d2d0a9e28c3e1.tar.gz | |
Switch types from int to Py_ssize_t to be compatible with Python 2.5 on 64-bit archs
Diffstat (limited to '_dbus_bindings/conn-methods.c')
| -rw-r--r-- | _dbus_bindings/conn-methods.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/_dbus_bindings/conn-methods.c b/_dbus_bindings/conn-methods.c index bf1fd59..f9c8554 100644 --- a/_dbus_bindings/conn-methods.c +++ b/_dbus_bindings/conn-methods.c @@ -141,7 +141,7 @@ _filter_message(DBusConnection *conn, DBusMessage *message, void *user_data) PyObject *callable = NULL; PyObject *msg_obj; #ifndef DBUS_PYTHON_DISABLE_CHECKS - int i, size; + Py_ssize_t i, size; #endif dbus_message_ref(message); |
