diff options
author | Panu Matilainen <pmatilai@redhat.com> | 2007-08-14 09:00:54 +0300 |
---|---|---|
committer | Panu Matilainen <pmatilai@redhat.com> | 2007-08-14 09:00:54 +0300 |
commit | b023a940b4e4f5352d0e335f31609c8cc27c3d65 (patch) | |
tree | ca18899c95c789df8adc046db641db5fefec83e7 | |
parent | 9ff44e11e40d9f00e638d8f54fff23968470e7e4 (diff) | |
download | librpm-tizen-b023a940b4e4f5352d0e335f31609c8cc27c3d65.tar.gz librpm-tizen-b023a940b4e4f5352d0e335f31609c8cc27c3d65.tar.bz2 librpm-tizen-b023a940b4e4f5352d0e335f31609c8cc27c3d65.zip |
Avoid python 2.5 requirement by using int instead of Py_ssize_t
-rw-r--r-- | python/rpmmodule.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/rpmmodule.c b/python/rpmmodule.c index 0b285631b..812521cf3 100644 --- a/python/rpmmodule.c +++ b/python/rpmmodule.c @@ -63,7 +63,7 @@ static PyObject * archScore(PyObject * self, PyObject * args, PyObject * kwds) static PyObject * signalsCaught(PyObject * self, PyObject * check) { PyObject *caught, *o; - Py_ssize_t llen; + int llen; int signum, i; sigset_t newMask, oldMask; |