From 92d52c3f4cd61ac032ef4ebc79a1d6e04dcc52e1 Mon Sep 17 00:00:00 2001 From: Zebediah Figura Date: Tue, 2 Jun 2020 18:24:12 -0500 Subject: [PATCH] ntdll-Interrupt-0x2e: Fix a compiler warning. --- ...-ntdll-Catch-windows-int-0x2e-syscall-on-i386.patch | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/patches/ntdll-Interrupt-0x2e/0001-ntdll-Catch-windows-int-0x2e-syscall-on-i386.patch b/patches/ntdll-Interrupt-0x2e/0001-ntdll-Catch-windows-int-0x2e-syscall-on-i386.patch index e4a07ff2..caf7f628 100644 --- a/patches/ntdll-Interrupt-0x2e/0001-ntdll-Catch-windows-int-0x2e-syscall-on-i386.patch +++ b/patches/ntdll-Interrupt-0x2e/0001-ntdll-Catch-windows-int-0x2e-syscall-on-i386.patch @@ -1,4 +1,4 @@ -From 2873f540b5334e1562b1b2f0f537ee5a27b23592 Mon Sep 17 00:00:00 2001 +From f15c706847288555a76b3827b09691b23d7ec57d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michael=20M=C3=BCller?= Date: Sun, 19 Mar 2017 19:08:34 +0100 Subject: [PATCH] ntdll: Catch windows int 0x2e syscall on i386. @@ -8,15 +8,15 @@ Subject: [PATCH] ntdll: Catch windows int 0x2e syscall on i386. 1 file changed, 5 insertions(+) diff --git a/dlls/ntdll/signal_i386.c b/dlls/ntdll/signal_i386.c -index 8d1c59150..ca2c67333 100644 +index 78d03f669d7..a134b6d54ab 100644 --- a/dlls/ntdll/signal_i386.c +++ b/dlls/ntdll/signal_i386.c -@@ -1946,6 +1946,11 @@ static BOOL handle_interrupt( unsigned int interrupt, ucontext_t *sigcontext, st +@@ -1731,6 +1731,11 @@ static BOOL handle_interrupt( unsigned int interrupt, ucontext_t *sigcontext, st stack->rec.ExceptionInformation[2] = stack->context.Edx; setup_raise_exception( sigcontext, stack ); return TRUE; + case 0x2e: -+ FIXME("unimplemented syscall handler for %#lx\n", stack->context.Eax); ++ FIXME("unimplemented syscall handler for %#x\n", stack->context.Eax); + EAX_sig(sigcontext) = STATUS_INVALID_SYSTEM_SERVICE; + EIP_sig(sigcontext) += 2; + return TRUE; @@ -24,5 +24,5 @@ index 8d1c59150..ca2c67333 100644 return FALSE; } -- -2.23.0 +2.26.2