From 5b53a03ee5aeb71c58c57e3f66a8fbe144ec135f Mon Sep 17 00:00:00 2001 From: Xu Jun <693788454@qq.com> Date: Fri, 24 Jun 2022 15:53:20 +0800 Subject: [PATCH] address PR comments --- core/iwasm/common/wasm_runtime_common.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/core/iwasm/common/wasm_runtime_common.c b/core/iwasm/common/wasm_runtime_common.c index 41ff732ff..cd1d56d04 100644 --- a/core/iwasm/common/wasm_runtime_common.c +++ b/core/iwasm/common/wasm_runtime_common.c @@ -4568,7 +4568,7 @@ wasm_runtime_dump_call_stack(WASMExecEnv *exec_env) #endif } -uint32_t +uint32 wasm_runtime_get_call_stack_buf_size(wasm_exec_env_t exec_env) { WASMModuleInstanceCommon *module_inst = @@ -4588,9 +4588,9 @@ wasm_runtime_get_call_stack_buf_size(wasm_exec_env_t exec_env) return 0; } -uint32_t +uint32 wasm_runtime_dump_call_stack_to_buf(wasm_exec_env_t exec_env, char *buf, - uint32_t len) + uint32 len) { WASMModuleInstanceCommon *module_inst = wasm_exec_env_get_module_inst(exec_env);