Skip to content

Commit d7521ee

Browse files
authored
libc-builtin: Fix a printf format (#3652)
1 parent 5744e11 commit d7521ee

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

core/iwasm/libraries/libc-builtin/libc_builtin_wrapper.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1005,7 +1005,7 @@ print_i32_wrapper(wasm_exec_env_t exec_env, int32 i32)
10051005
static void
10061006
print_i64_wrapper(wasm_exec_env_t exec_env, int64 i64)
10071007
{
1008-
os_printf("in specttest.print_i64(%" PRId32 ")\n", i64);
1008+
os_printf("in specttest.print_i64(%" PRId64 ")\n", i64);
10091009
}
10101010

10111011
static void

0 commit comments

Comments
 (0)