From b1ed95f29d820f3c3d02fdff073c482e6742e6dd Mon Sep 17 00:00:00 2001 From: YAMAMOTO Takashi Date: Mon, 9 Nov 2020 17:27:13 +0900 Subject: [PATCH] arm: Change _int32_t from int to long to match the compiler --- arch/arm/include/types.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/arch/arm/include/types.h b/arch/arm/include/types.h index fd804a87ce..86fffc154a 100644 --- a/arch/arm/include/types.h +++ b/arch/arm/include/types.h @@ -56,8 +56,8 @@ typedef unsigned char _uint8_t; typedef signed short _int16_t; typedef unsigned short _uint16_t; -typedef signed int _int32_t; -typedef unsigned int _uint32_t; +typedef signed long _int32_t; +typedef unsigned long _uint32_t; typedef signed long long _int64_t; typedef unsigned long long _uint64_t;