From 54ef3c8e0fa327f2ac4922b3a4bf29a7daea6dae Mon Sep 17 00:00:00 2001 From: sunyaozu Date: Sat, 4 Feb 2023 17:42:22 +0800 Subject: [PATCH] modify i18n memory alloc type Issue: I68O2U Test: Build & Boot devices Signed-off-by: sunyaozu --- memory/include/ohos_mem_pool.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/memory/include/ohos_mem_pool.h b/memory/include/ohos_mem_pool.h index 1b7d5ea..4b18635 100644 --- a/memory/include/ohos_mem_pool.h +++ b/memory/include/ohos_mem_pool.h @@ -58,7 +58,7 @@ typedef enum { MEM_TYPE_JERRY_LSRAM, /* jerry script low speed memory pool */ MEM_TYPE_HICHAIN, /* security memory pool */ MEM_TYPE_SOFTBUS_LSRAM, /* softbus low speed memory pool */ - MEM_TYPE_I18N_LSRAM, /* global i18n low speed memory pool */ + MEM_TYPE_I18N_LSRAM = 111, /* global i18n low speed memory pool */ MEM_TYPE_CJSON_LSRAM = 114, MEM_TYPE_APP_VERIFY_LSRAM = 116, -- Gitee