]> git.ipfire.org Git - thirdparty/libarchive.git/commitdiff
Fix int32_t in config.h.in 85/head
authorDaniel Pfeifer <daniel@pfeifer-mail.de>
Wed, 9 Jul 2014 22:54:44 +0000 (00:54 +0200)
committerDaniel Pfeifer <daniel@pfeifer-mail.de>
Wed, 9 Jul 2014 22:54:44 +0000 (00:54 +0200)
build/cmake/config.h.in

index 3b82b24fd8e740d3bfacd2aa27b2828c968a3c48..3a4a49ee5a6757a679d5c69b38b5981c35b5dd81 100644 (file)
@@ -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