summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorPanu Matilainen <pmatilai@redhat.com>2008-02-05 17:42:19 +0200
committerPanu Matilainen <pmatilai@redhat.com>2008-02-05 17:42:19 +0200
commitd718b12f5bf5b94c418b8235e45625cbccca6220 (patch)
tree18c6fe59a6b06b2b1092a1c2e6f67f8657f27cc6 /tools
parent53ca9c775f5f3954f140f462d22bb28cde02c6cd (diff)
downloadrpm-d718b12f5bf5b94c418b8235e45625cbccca6220.tar.gz
rpm-d718b12f5bf5b94c418b8235e45625cbccca6220.tar.bz2
rpm-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 'tools')
-rw-r--r--tools/rpminject.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/rpminject.c b/tools/rpminject.c
index a097ebee9..03f3011da 100644
--- a/tools/rpminject.c
+++ b/tools/rpminject.c
@@ -119,7 +119,7 @@ static enum cvtaction convertAMD(enum cvtaction ca, rpmTagType type,
return ca;
}
-static enum cvtaction convertExistingAMD(rpm_tag_t tag, rpmTagType type,
+static enum cvtaction convertExistingAMD(rpmTag tag, rpmTagType type,
rpm_data_t valsp, rpm_count_t *countp, void ** nvalsp, rpm_count_t *ncountp,
cmd_t *cmds[], int ncmds)
{
@@ -193,7 +193,7 @@ static enum cvtaction convertExistingAMD(rpm_tag_t tag, rpmTagType type,
static
Header headerCopyWithConvert(Header h, cmd_t *cmds[], int ncmds)
{
- rpm_tag_t tag;
+ rpmTag tag;
rpmTagType type;
rpm_count_t count;
rpm_data_t vals;