diff -r 73393734833c -r c9c90315ea24 src/import-rpmdb.c --- a/src/import-rpmdb.c Wed Jan 07 17:59:12 2009 +0000 +++ b/src/import-rpmdb.c Wed Apr 22 15:09:17 2009 +0100 @@ -31,8 +31,8 @@ void *p; char *string; char **list; - uint_32 *flags; - uint_32 integer; + uint32_t *flags; + uint32_t integer; }; static uint32_t @@ -62,11 +62,11 @@ static void add_properties(struct razor_importer *importer, - uint32_t type_flags, - Header h, int_32 name_tag, int_32 version_tag, int_32 flags_tag) + uint32_t type_flags, Header h, + int32_t name_tag, int32_t version_tag, int32_t flags_tag) { union rpm_entry names, versions, flags; - int_32 i, type, count; + int32_t i, type, count; headerGetEntry(h, name_tag, &type, &names.p, &count); headerGetEntry(h, version_tag, &type, &versions.p, &count); @@ -85,7 +85,7 @@ struct razor_importer *importer; rpmdbMatchIterator iter; Header h; - int_32 type, count, i; + int32_t type, count, i; union rpm_entry name, epoch, version, release, arch; union rpm_entry summary, description, url, license; union rpm_entry basenames, dirnames, dirindexes;