From 584c5cd8d9a011b1c23d520a904a30c9cd7dae93 Mon Sep 17 00:00:00 2001 From: Silvan Calarco Date: Wed, 14 May 2014 01:28:57 +0200 Subject: [PATCH] changelog.c: time array must be declared as int_32* instead of long* in x86_64 --- src/changelog.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/changelog.c b/src/changelog.c index 7215879..3202a7d 100644 --- a/src/changelog.c +++ b/src/changelog.c @@ -127,8 +127,7 @@ getPackageChangelog(Header h, struct headerSourceList* headersource) struct Packager *currpackager = NULL; char **changelogtext, **changelogrelease; char *endp; -// long *changelogtime; - long *changelogtime; + int_32 *changelogtime; char changelogname[255]; changelogtime = headerGetUIntArrayEntry(h, RPMTAG_CHANGELOGTIME, &count);