summaryrefslogtreecommitdiff
path: root/build/cmake
diff options
context:
space:
mode:
authorMichihiro NAKAJIMA <ggcueroad@gmail.com>2014-10-13 18:15:05 +0900
committerMichihiro NAKAJIMA <ggcueroad@gmail.com>2014-10-13 18:15:05 +0900
commitd052eea055efb486776fa41ebafa5a2e4b5e0a19 (patch)
treeb9c0835196a95b6042dd6c0913eafa2fb0beff9e /build/cmake
parentd9422ef8a55cbe4f738336de30160ca103644b81 (diff)
parent747965f597d56b92750b4abb831ae148e8221165 (diff)
downloadlibarchive-d052eea055efb486776fa41ebafa5a2e4b5e0a19.tar.gz
Merge pull request #85 from purpleKarrot/master
Fix int32_t in config.h.in
Diffstat (limited to 'build/cmake')
-rw-r--r--build/cmake/config.h.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/build/cmake/config.h.in b/build/cmake/config.h.in
index a1272e18..a08c3bd8 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