mirror of
https://github.com/bytecodealliance/wasm-micro-runtime.git
synced 2025-02-06 06:55:07 +00:00
libc-builtin: Fix a printf format (#3652)
This commit is contained in:
parent
5744e11916
commit
d7521eea4c
|
@ -1005,7 +1005,7 @@ print_i32_wrapper(wasm_exec_env_t exec_env, int32 i32)
|
|||
static void
|
||||
print_i64_wrapper(wasm_exec_env_t exec_env, int64 i64)
|
||||
{
|
||||
os_printf("in specttest.print_i64(%" PRId32 ")\n", i64);
|
||||
os_printf("in specttest.print_i64(%" PRId64 ")\n", i64);
|
||||
}
|
||||
|
||||
static void
|
||||
|
|
Loading…
Reference in New Issue
Block a user