summaryrefslogtreecommitdiff
path: root/lib/rpmds.c
diff options
context:
space:
mode:
authorPanu Matilainen <pmatilai@redhat.com>2007-12-13 09:25:10 +0200
committerPanu Matilainen <pmatilai@redhat.com>2007-12-13 09:25:10 +0200
commitc8f2927227471758abbdb36781d885b01798f0f8 (patch)
treed3fced97892138d64913efabcf3a0f58411457ea /lib/rpmds.c
parent50f608b42f55e1d2c89dc22a01c58b7621b620a5 (diff)
downloadrpm-c8f2927227471758abbdb36781d885b01798f0f8.tar.gz
rpm-c8f2927227471758abbdb36781d885b01798f0f8.tar.bz2
rpm-c8f2927227471758abbdb36781d885b01798f0f8.zip
Use rpm_count_t everywhere for header data count
- typedef'ed as uint32_t as that's the key size limit imposed by BDB, relevant for RPM_BIN_TYPE - easy to change to whatever later on as it's now consistent everywhere
Diffstat (limited to 'lib/rpmds.c')
-rw-r--r--lib/rpmds.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/rpmds.c b/lib/rpmds.c
index fc1a69b69..4bbdd66fe 100644
--- a/lib/rpmds.c
+++ b/lib/rpmds.c
@@ -130,7 +130,7 @@ rpmds rpmdsNew(Header h, rpmTag tagN, int flags)
const char * Type;
const char ** N;
rpmTagType Nt;
- int32_t Count;
+ rpm_count_t Count;
if (tagN == RPMTAG_PROVIDENAME) {
Type = "Provides";