From dcb4bbb3e622f657f94e5ce3e79a1557281643cc Mon Sep 17 00:00:00 2001 From: ptitSeb Date: Sun, 18 Sep 2022 19:00:53 +0200 Subject: More fixes and improvment to bash handling (helps #360) --- src/emu/x64int3.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/emu') diff --git a/src/emu/x64int3.c b/src/emu/x64int3.c index f79d897d..f56e66ca 100755 --- a/src/emu/x64int3.c +++ b/src/emu/x64int3.c @@ -154,7 +154,7 @@ void x64Int3(x64emu_t* emu, uintptr_t* addr) perr = 1; } else if (strstr(s, "waitpid")==s) { pu32 = (uint32_t*)R_RSI; - snprintf(buff, 255, "%04d|%p: Calling %s(%ld, %p, %d)", tid, *(void**)(R_RSP), s, R_RDI, pu32, R_EDX); + snprintf(buff, 255, "%04d|%p: Calling %s(%d, %p, %d)", tid, *(void**)(R_RSP), s, R_EDI, pu32, R_EDX); perr = 1; post = 6; } else if (!strcmp(s, "lseek64")) { -- cgit 1.4.1