summaryrefslogtreecommitdiff
path: root/build/parsePreamble.c
diff options
context:
space:
mode:
authorRalf Corsépius <corsepiu@fedoraproject.org>2007-10-26 13:24:14 +0200
committerRalf Corsépius <corsepiu@fedoraproject.org>2007-10-26 13:24:14 +0200
commitbebeb89735f4927d33233d2c49e91919187f1c91 (patch)
treedab33f24de6f672de42e41af4787ceb8494a283c /build/parsePreamble.c
parentbbce1581029dddbdcdd76a0b969fd8a8fe5614bf (diff)
downloadlibrpm-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.c4
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;