From 671d6cc523815c38a5f331cf72cd5d004eb5d975 Mon Sep 17 00:00:00 2001 From: YAMAMOTO Takashi Date: Mon, 22 Apr 2024 12:46:32 +0900 Subject: [PATCH] samples/native-stack-overflow: comment --- samples/native-stack-overflow/src/main.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/samples/native-stack-overflow/src/main.c b/samples/native-stack-overflow/src/main.c index fa86e4df2..39eb9073a 100644 --- a/samples/native-stack-overflow/src/main.c +++ b/samples/native-stack-overflow/src/main.c @@ -124,8 +124,8 @@ main(int argc, char **argv) /* note: the function type is (ii)i */ uint32_t wasm_argv[] = { - stack, - 30, + stack, /* native_stack */ + 30, /* recurse_count */ }; uint32_t wasm_argc = 2; if (!wasm_runtime_call_wasm(exec_env, func, wasm_argc, wasm_argv)) {