xiaoxiang781216 commented on code in PR #16022: URL: https://github.com/apache/nuttx/pull/16022#discussion_r2003928752
########## arch/xtensa/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 long int _int32_t; +typedef long unsigned int _uint32_t; Review Comment: ```suggestion typedef unsigned long _uint32_t; ``` ########## arch/xtensa/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 long int _int32_t; Review Comment: ```suggestion typedef signed long _int32_t; ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@nuttx.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org