summaryrefslogtreecommitdiff
path: root/python/rpmts-py.c
diff options
context:
space:
mode:
Diffstat (limited to 'python/rpmts-py.c')
-rw-r--r--python/rpmts-py.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/python/rpmts-py.c b/python/rpmts-py.c
index 16d1eae28..103195721 100644
--- a/python/rpmts-py.c
+++ b/python/rpmts-py.c
@@ -499,7 +499,7 @@ static PyObject *
rpmts_IDTXload(rpmtsObject * s)
{
PyObject * result = NULL;
- rpm_tag_t tag = RPMTAG_INSTALLTID;
+ rpmTag tag = RPMTAG_INSTALLTID;
IDTX idtx;
if (_rpmts_debug)
@@ -539,7 +539,7 @@ static PyObject *
rpmts_IDTXglob(rpmtsObject * s)
{
PyObject * result = NULL;
- rpm_tag_t tag = RPMTAG_REMOVETID;
+ rpmTag tag = RPMTAG_REMOVETID;
char * globstr;
IDTX idtx;
@@ -1255,7 +1255,7 @@ rpmts_Match(rpmtsObject * s, PyObject * args, PyObject * kwds)
/* XXX lkey *must* be a 32 bit integer, int "works" on all known platforms. */
int lkey = 0;
int len = 0;
- rpm_tag_t tag = RPMDBI_PACKAGES;
+ rpmTag tag = RPMDBI_PACKAGES;
char * kwlist[] = {"tagNumber", "key", NULL};
if (_rpmts_debug)