From: Daniel Pfeifer Date: Wed, 9 Jul 2014 22:54:44 +0000 (+0200) Subject: Fix int32_t in config.h.in X-Git-Tag: v3.1.900a~175^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=747965f597d56b92750b4abb831ae148e8221165;p=thirdparty%2Flibarchive.git Fix int32_t in config.h.in --- diff --git a/build/cmake/config.h.in b/build/cmake/config.h.in index 3b82b24fd..3a4a49ee5 100644 --- a/build/cmake/config.h.in +++ b/build/cmake/config.h.in @@ -63,7 +63,7 @@ typedef long long int64_t; * Similarly for int32_t */ #if !defined(HAVE_INT32_T) && SIZE_OF_INT == 4 -typedef long int32_t; +typedef int int32_t; #define HAVE_INT32_T #endif