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/nuttx.git
commit bdcb1f6a25959bab54b0599a5703d5f0110f4d7b Author: anjiahao <anjia...@xiaomi.com> AuthorDate: Wed Nov 16 14:22:19 2022 +0800 fix:mmsize_t need support 64bit Signed-off-by: anjiahao <anjia...@xiaomi.com> --- mm/mm_heap/mm.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mm/mm_heap/mm.h b/mm/mm_heap/mm.h index 4bb919ac1e..10ee0596ac 100644 --- a/mm/mm_heap/mm.h +++ b/mm/mm_heap/mm.h @@ -148,7 +148,7 @@ #ifdef CONFIG_MM_SMALL typedef uint16_t mmsize_t; #else -typedef uint32_t mmsize_t; +typedef size_t mmsize_t; #endif /* This describes an allocated chunk. An allocated chunk is