From e8277e51e2ec9c13721b68cd8062b3b7d933d255 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?George=20Bi=C8=99oc?= Date: Fri, 25 Jun 2021 12:42:02 +0200 Subject: [PATCH] [CSRSS] Fix MSVC AMD64 build --- subsystems/win32/csrss/csrss.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/subsystems/win32/csrss/csrss.c b/subsystems/win32/csrss/csrss.c index 7dd97df16c7..a4205d5f3b0 100644 --- a/subsystems/win32/csrss/csrss.c +++ b/subsystems/win32/csrss/csrss.c @@ -43,7 +43,9 @@ _main(int argc, { KPRIORITY BasePriority = (8 + 1) + 4; NTSTATUS Status; +#if defined (_X86_) ULONG Response; +#endif UNREFERENCED_PARAMETER(envp); UNREFERENCED_PARAMETER(DebugFlag);