You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nuttx.apache.org by xi...@apache.org on 2020/11/19 08:50:09 UTC

[incubator-nuttx] 04/34: arm: Change _int32_t from int to long to match the compiler

This is an automated email from the ASF dual-hosted git repository.

xiaoxiang pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git

commit b1ed95f29d820f3c3d02fdff073c482e6742e6dd
Author: YAMAMOTO Takashi <ya...@midokura.com>
AuthorDate: Mon Nov 9 17:27:13 2020 +0900

    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 fd804a8..86fffc1 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;