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/rpmdb.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/rpmdb.c')
-rw-r--r-- | rpmdb/rpmdb.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/rpmdb/rpmdb.c b/rpmdb/rpmdb.c index 0a55957be..f23bea46d 100644 --- a/rpmdb/rpmdb.c +++ b/rpmdb/rpmdb.c @@ -1283,7 +1283,7 @@ if (rc == 0) if (allMatches != NULL) while (i < allMatches->count) { const char ** baseNames, ** dirNames; - int_32 * dirIndexes; + uint_32 * dirIndexes; unsigned int offset = dbiIndexRecordOffset(allMatches, i); unsigned int prevoff; Header h; @@ -3447,8 +3447,8 @@ if (key->size == 0) key->size++; /* XXX "/" fixup. */ const char ** baseNames; const char ** fullBaseNames; rpmTagType bnt, dnt; - int_32 * dirIndexes; - int_32 * fullDirIndexes; + uint_32 * dirIndexes; + uint_32 * fullDirIndexes; fingerPrint * fps; dbiIndexItem im; int start; |