about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--library/std/src/sys/unix/time.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/library/std/src/sys/unix/time.rs b/library/std/src/sys/unix/time.rs
index 4fe61b28488..c94a29b510a 100644
--- a/library/std/src/sys/unix/time.rs
+++ b/library/std/src/sys/unix/time.rs
@@ -217,7 +217,7 @@ impl From<__timespec64> for Timespec {
 }
 
 #[cfg(any(
-    all(target_os = "macos", any(not(target_arch = "aarch64"))),
+    all(target_os = "macos", not(target_arch = "aarch64")),
     target_os = "ios",
     target_os = "watchos",
     target_os = "tvos"
@@ -338,7 +338,7 @@ mod inner {
 }
 
 #[cfg(not(any(
-    all(target_os = "macos", any(not(target_arch = "aarch64"))),
+    all(target_os = "macos", not(target_arch = "aarch64")),
     target_os = "ios",
     target_os = "watchos",
     target_os = "tvos"