From 8cd23c577fef29e8d512f6ab75a378ef2d76e147 Mon Sep 17 00:00:00 2001 From: Mikael Urankar Date: Thu, 31 Oct 2024 17:53:18 +0100 Subject: [PATCH] fix(runtime/ops):Remove a duplicate conditional. Use FreeBSD instead as it needs the same fix. --- runtime/ops/signal.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/runtime/ops/signal.rs b/runtime/ops/signal.rs index e1e4ab68bc..dbd96ca837 100644 --- a/runtime/ops/signal.rs +++ b/runtime/ops/signal.rs @@ -49,7 +49,7 @@ pub enum SignalError { #[cfg(any( target_os = "android", target_os = "linux", - target_os = "openbsd", + target_os = "freebsd", target_os = "openbsd", target_os = "macos", target_os = "solaris", @@ -60,7 +60,7 @@ pub enum SignalError { #[cfg(any( target_os = "android", target_os = "linux", - target_os = "openbsd", + target_os = "freebsd", target_os = "openbsd", target_os = "macos", target_os = "solaris",