From 30b1c9570fd63461b9b3d6f350d0a45d11444b15 Mon Sep 17 00:00:00 2001 From: Peter Ammon Date: Sun, 5 Oct 2025 21:29:54 -0700 Subject: [PATCH] Suppress a deprecation warning on time_t Continue to pull cirrus builds back into the land of the living. --- src/tests/env.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/tests/env.rs b/src/tests/env.rs index 50dc32314..cd08e4e98 100644 --- a/src/tests/env.rs +++ b/src/tests/env.rs @@ -64,6 +64,7 @@ fn return_timezone_hour(tstamp: SystemTime, timezone: &wstr) -> libc::c_int { let _var = vars.get(L!("TZ")); + #[allow(deprecated)] let tstamp: libc::time_t = tstamp .duration_since(UNIX_EPOCH) .unwrap()