xtensa: Change _int32_t from long to int to match the compiler

PRIx32 etc is already "x" etc.
This commit is contained in:
YAMAMOTO Takashi 2020-11-09 16:31:49 +09:00 committed by Xiang Xiao
parent c10a8dc73b
commit c18f074830

View File

@ -69,8 +69,8 @@ typedef unsigned char _uint8_t;
typedef signed short _int16_t; typedef signed short _int16_t;
typedef unsigned short _uint16_t; typedef unsigned short _uint16_t;
typedef signed long _int32_t; typedef signed int _int32_t;
typedef unsigned long _uint32_t; typedef unsigned int _uint32_t;
typedef signed long long _int64_t; typedef signed long long _int64_t;
typedef unsigned long long _uint64_t; typedef unsigned long long _uint64_t;