From 5d343652084db3af2e1f9b0f02eb02ec43184fe4 Mon Sep 17 00:00:00 2001 From: Alix ANNERAUD Date: Sun, 2 Mar 2025 20:29:12 +0100 Subject: [PATCH] fix: correct function declaration for wasm_runtime_set_instruction_count_limit --- core/iwasm/common/wasm_runtime_common.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/iwasm/common/wasm_runtime_common.h b/core/iwasm/common/wasm_runtime_common.h index 60688fb52..00d107fe7 100644 --- a/core/iwasm/common/wasm_runtime_common.h +++ b/core/iwasm/common/wasm_runtime_common.h @@ -676,7 +676,7 @@ wasm_runtime_set_native_stack_boundary(WASMExecEnv *exec_env, /* See wasm_export.h for description */ WASM_RUNTIME_API_EXTERN void wasm_runtime_set_instruction_count_limit(WASMExecEnv *exec_env, - int instructions_to_execute) + int instructions_to_execute); #endif #if WASM_CONFIGURABLE_BOUNDS_CHECKS != 0