From 37ff3a71a4ce8013ccc2bcc891ed26ebc3013582 Mon Sep 17 00:00:00 2001 From: Alex Date: Fri, 4 Nov 2022 05:26:43 +0200 Subject: [PATCH] Update files --- SystemCalls/Syscalls.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SystemCalls/Syscalls.cpp b/SystemCalls/Syscalls.cpp index 9e5ba2bf..8e9686a7 100644 --- a/SystemCalls/Syscalls.cpp +++ b/SystemCalls/Syscalls.cpp @@ -5,7 +5,7 @@ extern "C" uint64_t SystemCallsHandler(SyscallsRegs *regs) { #if defined(__amd64__) - fixme("System call %lld", regs->rax); + fixme("System call %ld", regs->rax); #elif defined(__i386__) fixme("System call %lld", regs->eax); #elif defined(__aarch64__)