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 /build/parsePreamble.c | |
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 'build/parsePreamble.c')
-rw-r--r-- | build/parsePreamble.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/build/parsePreamble.c b/build/parsePreamble.c index 220b8e986..61d62ee90 100644 --- a/build/parsePreamble.c +++ b/build/parsePreamble.c @@ -47,7 +47,7 @@ static rpmTag requiredTags[] = { /** */ -static void addOrAppendListEntry(Header h, int_32 tag, char * line) +static void addOrAppendListEntry(Header h, int32_t tag, char * line) { int xx; int argc; @@ -890,7 +890,7 @@ int parsePreamble(rpmSpec spec, int initialPackage) if (pkg != spec->packages) headerCopyTags(spec->packages->header, pkg->header, - (int_32 *)copyTagsDuringParse); + (int32_t *)copyTagsDuringParse); if (checkForRequired(pkg->header, NVR)) return RPMERR_BADSPEC; |