summaryrefslogtreecommitdiff
path: root/python
diff options
context:
space:
mode:
authorPanu Matilainen <pmatilai@redhat.com>2007-08-14 09:00:54 +0300
committerPanu Matilainen <pmatilai@redhat.com>2007-08-14 09:00:54 +0300
commitb023a940b4e4f5352d0e335f31609c8cc27c3d65 (patch)
treeca18899c95c789df8adc046db641db5fefec83e7 /python
parent9ff44e11e40d9f00e638d8f54fff23968470e7e4 (diff)
downloadrpm-b023a940b4e4f5352d0e335f31609c8cc27c3d65.tar.gz
rpm-b023a940b4e4f5352d0e335f31609c8cc27c3d65.tar.bz2
rpm-b023a940b4e4f5352d0e335f31609c8cc27c3d65.zip
Avoid python 2.5 requirement by using int instead of Py_ssize_t
Diffstat (limited to 'python')
-rw-r--r--python/rpmmodule.c2
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;