From 499a9b9855d5a8609353835a975e0be8c45aeb13 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Linus=20F=C3=A4rnstrand?= Date: Thu, 19 Dec 2024 13:17:17 +0100 Subject: [PATCH] Remove get_context_info for 32 bit x86 targets --- mullvad-daemon/src/exception_logging/win.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mullvad-daemon/src/exception_logging/win.rs b/mullvad-daemon/src/exception_logging/win.rs index 0670cc9daaee..3129a3026bfc 100644 --- a/mullvad-daemon/src/exception_logging/win.rs +++ b/mullvad-daemon/src/exception_logging/win.rs @@ -262,7 +262,7 @@ fn get_context_info(context: &CONTEXT) -> String { context_str } -#[cfg(any(target_arch = "x86", target_arch = "x86_64"))] +#[cfg(target_arch = "x86_64")] fn get_context_info(context: &CONTEXT) -> String { use windows_sys::Win32::System::Diagnostics::Debug::{ CONTEXT_CONTROL_AMD64, CONTEXT_INTEGER_AMD64, CONTEXT_SEGMENTS_AMD64,