diff options
author | Panu Matilainen <pmatilai@redhat.com> | 2007-07-12 12:30:26 +0300 |
---|---|---|
committer | Panu Matilainen <pmatilai@redhat.com> | 2007-07-12 12:30:26 +0300 |
commit | e12cf3d1cc653dfac7bb7fe3f9aa801ab0536c88 (patch) | |
tree | 62304878f4b18bf4024e14bc1ca2cbb4187443b5 /rpmdb/fprint.c | |
parent | cce81e1fa00d98dc97b6a9daa6b8b55437933ff8 (diff) | |
download | librpm-tizen-e12cf3d1cc653dfac7bb7fe3f9aa801ab0536c88.tar.gz librpm-tizen-e12cf3d1cc653dfac7bb7fe3f9aa801ab0536c88.tar.bz2 librpm-tizen-e12cf3d1cc653dfac7bb7fe3f9aa801ab0536c88.zip |
Use uint_32 for dirindexes everywhere
Diffstat (limited to 'rpmdb/fprint.c')
-rw-r--r-- | rpmdb/fprint.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/rpmdb/fprint.c b/rpmdb/fprint.c index 2244a91e5..1d5bf40fd 100644 --- a/rpmdb/fprint.c +++ b/rpmdb/fprint.c @@ -234,7 +234,7 @@ int fpEqual(const void * key1, const void * key2) /*@-bounds@*/ void fpLookupList(fingerPrintCache cache, const char ** dirNames, - const char ** baseNames, const int * dirIndexes, + const char ** baseNames, const uint_32 * dirIndexes, int fileCount, fingerPrint * fpList) { int i; @@ -270,7 +270,7 @@ void fpLookupHeader(fingerPrintCache cache, Header h, fingerPrint * fpList) HFD_t hfd = headerFreeData; const char ** baseNames, ** dirNames; rpmTagType bnt, dnt; - int_32 * dirIndexes; + uint_32 * dirIndexes; int fileCount; int xx; |