diff options
author | Ralf Corsépius <corsepiu@fedoraproject.org> | 2007-10-26 13:24:14 +0200 |
---|---|---|
committer | Ralf Corsépius <corsepiu@fedoraproject.org> | 2007-10-26 13:24:14 +0200 |
commit | bebeb89735f4927d33233d2c49e91919187f1c91 (patch) | |
tree | dab33f24de6f672de42e41af4787ceb8494a283c /lib/rpmal.h | |
parent | bbce1581029dddbdcdd76a0b969fd8a8fe5614bf (diff) | |
download | librpm-tizen-bebeb89735f4927d33233d2c49e91919187f1c91.tar.gz librpm-tizen-bebeb89735f4927d33233d2c49e91919187f1c91.tar.bz2 librpm-tizen-bebeb89735f4927d33233d2c49e91919187f1c91.zip |
Eliminate [u|]int_[8|16|32]. Use c99 stdint.h types instead.
Diffstat (limited to 'lib/rpmal.h')
-rw-r--r-- | lib/rpmal.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/rpmal.h b/lib/rpmal.h index 68a5db94e..4627f3201 100644 --- a/lib/rpmal.h +++ b/lib/rpmal.h @@ -6,7 +6,7 @@ * Structures used for managing added/available package lists. */ -#include "rpmlib.h" /* for rpmds, rpmfi, uint_32 */ +#include "rpmlib.h" /* for rpmds, rpmfi, uint32_t */ #include "rpmmessages.h" /* for fnpyKey */ #ifdef __cplusplus @@ -65,7 +65,7 @@ rpmalKey rpmalAdd(rpmal * alistp, rpmalKey pkgKey, fnpyKey key, rpmds provides, rpmfi fi, - uint_32 tscolor); + uint32_t tscolor); /** * Add package provides to available list index. @@ -76,7 +76,7 @@ rpmalKey rpmalAdd(rpmal * alistp, */ void rpmalAddProvides(rpmal al, rpmalKey pkgKey, - rpmds provides, uint_32 tscolor); + rpmds provides, uint32_t tscolor); /** * Generate index for available list. |