diff options
author | Panu Matilainen <pmatilai@redhat.com> | 2008-02-05 17:42:19 +0200 |
---|---|---|
committer | Panu Matilainen <pmatilai@redhat.com> | 2008-02-05 17:42:19 +0200 |
commit | d718b12f5bf5b94c418b8235e45625cbccca6220 (patch) | |
tree | 18c6fe59a6b06b2b1092a1c2e6f67f8657f27cc6 /lib/rpmte.h | |
parent | 53ca9c775f5f3954f140f462d22bb28cde02c6cd (diff) | |
download | librpm-tizen-d718b12f5bf5b94c418b8235e45625cbccca6220.tar.gz librpm-tizen-d718b12f5bf5b94c418b8235e45625cbccca6220.tar.bz2 librpm-tizen-d718b12f5bf5b94c418b8235e45625cbccca6220.zip |
Mass convert (back) to rpmTag as it's usable everywhere now
- cast away a few cases where the enum usage causes ridiculous amount
of compiler warnings from unhandled switch-cases
Diffstat (limited to 'lib/rpmte.h')
-rw-r--r-- | lib/rpmte.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/rpmte.h b/lib/rpmte.h index c37975460..b1f74cf4e 100644 --- a/lib/rpmte.h +++ b/lib/rpmte.h @@ -346,7 +346,7 @@ fnpyKey rpmteKey(rpmte te); * @param tag dependency tag * @return dependency tag set */ -rpmds rpmteDS(rpmte te, rpm_tag_t tag); +rpmds rpmteDS(rpmte te, rpmTag tag); /** \ingroup rpmte * Retrieve file info tag set from transaction element. @@ -354,14 +354,14 @@ rpmds rpmteDS(rpmte te, rpm_tag_t tag); * @param tag file info tag (RPMTAG_BASENAMES) * @return file info tag set */ -rpmfi rpmteFI(rpmte te, rpm_tag_t tag); +rpmfi rpmteFI(rpmte te, rpmTag tag); /** \ingroup rpmte * Calculate transaction element dependency colors/refs from file info. * @param te transaction element * @param tag dependency tag (RPMTAG_PROVIDENAME, RPMTAG_REQUIRENAME) */ -void rpmteColorDS(rpmte te, rpm_tag_t tag); +void rpmteColorDS(rpmte te, rpmTag tag); /** \ingroup rpmte * Return transaction element index. |