From: Jaesik Date: Fri, 7 Apr 2017 06:33:12 +0000 (+0900) Subject: fix typo about invalid define name X-Git-Tag: 1.1_Public_Release~627^2~1 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=00d0d9f955ff9dc022884b13a42a544d69dde38e;p=rtos%2Ftinyara.git fix typo about invalid define name change SIZEOF_MM_MALLOC_DEBUG_INO to SIZEOF_MM_MALLOC_DEBUG_INFO. --- diff --git a/os/include/tinyara/mm/mm.h b/os/include/tinyara/mm/mm.h index a35da1f..a1ef45a 100644 --- a/os/include/tinyara/mm/mm.h +++ b/os/include/tinyara/mm/mm.h @@ -234,7 +234,7 @@ typedef size_t mmaddress_t; /* 32 bit address space */ #error Unknown CONFIG_ARCH option, malloc debug feature wont work. #endif -#define SIZEOF_MM_MALLOC_DEBUG_INO \ +#define SIZEOF_MM_MALLOC_DEBUG_INFO \ (sizeof(mmaddress_t) + sizeof(int16_t) + sizeof(uint16_t)) #endif @@ -284,7 +284,7 @@ struct mm_freenode_s { #define MM_PTR_SIZE sizeof(FAR struct mm_freenode_s *) #ifdef CONFIG_DEBUG_MM_HEAPINFO #define SIZEOF_MM_FREENODE \ - (SIZEOF_MM_ALLOCNODE - SIZEOF_MM_MALLOC_DEBUG_INO + 2 * MM_PTR_SIZE) + (SIZEOF_MM_ALLOCNODE - SIZEOF_MM_MALLOC_DEBUG_INFO + 2 * MM_PTR_SIZE) #else #define SIZEOF_MM_FREENODE (SIZEOF_MM_ALLOCNODE + 2 * MM_PTR_SIZE) #endif