From 16a284a67c1a9d531586fe2c393e26c3aacccb7f Mon Sep 17 00:00:00 2001 From: wenyongh Date: Thu, 9 Jul 2020 16:07:41 +0800 Subject: [PATCH] Fix compile issue of zephyr (#306) --- core/shared/platform/zephyr/zephyr_platform.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/shared/platform/zephyr/zephyr_platform.c b/core/shared/platform/zephyr/zephyr_platform.c index d2408948dc..8c701a2031 100644 --- a/core/shared/platform/zephyr/zephyr_platform.c +++ b/core/shared/platform/zephyr/zephyr_platform.c @@ -20,7 +20,7 @@ static exec_mem_free_func_t exec_mem_free_func = NULL; static void disable_mpu_rasr_xn(void) { - u32_t index; + uint32 index; /* Kept the max index as 8 (irrespective of soc) because the sram would most likely be set at index 2. */ for (index = 0U; index < 8; index++) {