debug_engine: Fix a few typos (#1261)

no functional changes are intended.

cf.
https://sourceware.org/gdb/onlinedocs/gdb/General-Query-Packets.html#General-Query-Packets
This commit is contained in:
YAMAMOTO Takashi
2022-06-30 16:45:46 +09:00
committed by GitHub
parent 2b49a0b817
commit 653efecd02
5 changed files with 15 additions and 15 deletions

View File

@ -1201,11 +1201,11 @@ wasm_debug_instance_get_global(WASMDebugInstance *instance, int32 frame_index,
uint64
wasm_debug_instance_mmap(WASMDebugInstance *instance, uint32 size,
int32 map_port)
int32 map_prot)
{
WASMExecEnv *exec_env;
uint32 offset = 0;
(void)map_port;
(void)map_prot;
if (!instance)
return 0;