From 422c8fb8be76c14056fb376df840057dafc85adb Mon Sep 17 00:00:00 2001 From: Alix ANNERAUD Date: Sun, 2 Mar 2025 20:16:21 +0100 Subject: [PATCH] fix: remove unnecessary backslash in macro definition --- core/iwasm/interpreter/wasm_interp_classic.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/iwasm/interpreter/wasm_interp_classic.c b/core/iwasm/interpreter/wasm_interp_classic.c index f7b7dc573..88e25308f 100644 --- a/core/iwasm/interpreter/wasm_interp_classic.c +++ b/core/iwasm/interpreter/wasm_interp_classic.c @@ -1517,7 +1517,7 @@ wasm_interp_call_func_import(WASMModuleInstance *module_inst, os_mutex_unlock(&exec_env->wait_lock); \ } \ CHECK_INSTRUCTION_LIMIT(); \ - \ goto *handle_table[*frame_ip++]; \ + goto *handle_table[*frame_ip++]; \ } while (0) #else #define HANDLE_OP_END() \