diff options
Diffstat (limited to 'lib/legacy.c')
-rw-r--r-- | lib/legacy.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/legacy.c b/lib/legacy.c index ba0d03402..fde9b4b2f 100644 --- a/lib/legacy.c +++ b/lib/legacy.c @@ -34,8 +34,8 @@ void compressFilelist(Header h) const char ** baseNames; uint32_t * dirIndexes; rpmTagType fnt; - int count; - int i, xx; + rpm_count_t count, i; + int xx; int dirIndex = -1; /* @@ -115,7 +115,7 @@ void expandFilelist(Header h) HAE_t hae = (HAE_t)headerAddEntry; HRE_t hre = (HRE_t)headerRemoveEntry; const char ** fileNames = NULL; - int count = 0; + rpm_count_t count = 0; int xx; if (!headerIsEntry(h, RPMTAG_OLDFILENAMES)) { @@ -149,8 +149,8 @@ void providePackageNVR(Header h) const char ** providesEVR = NULL; rpmTagType pnt, pvt; int32_t * provideFlags = NULL; - int providesCount; - int i, xx; + rpm_count_t providesCount, i; + int xx; int bingo = 1; /* Generate provides for this package name-version-release. */ |