about summary refs log tree commit diff
diff options
context:
space:
mode:
authorStefan Lankes <slankes@eonerc.rwth-aachen.de>2023-07-03 07:35:46 +0200
committerStefan Lankes <slankes@eonerc.rwth-aachen.de>2023-07-12 13:14:00 +0200
commite1777f9690e50b693ec50f5fa1c9e10e428174b4 (patch)
tree0bbfee6eb1704737501482d09da2d21a31bc07fe
parent50c7344eafb8dd88aff996063cc0ec270e2e09e3 (diff)
downloadrust-e1777f9690e50b693ec50f5fa1c9e10e428174b4.tar.gz
rust-e1777f9690e50b693ec50f5fa1c9e10e428174b4.zip
fix usage of Timespec om the target hermit
-rw-r--r--library/std/src/sys/hermit/time.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/library/std/src/sys/hermit/time.rs b/library/std/src/sys/hermit/time.rs
index 5440d85df4a..7d91460aba3 100644
--- a/library/std/src/sys/hermit/time.rs
+++ b/library/std/src/sys/hermit/time.rs
@@ -40,7 +40,7 @@ impl Timespec {
     }
 
     fn checked_add_duration(&self, other: &Duration) -> Option<Timespec> {
-        let mut secs = self.tv_sec.checked_add_unsigned(other.as_secs())?;
+        let mut secs = self.t.tv_sec.checked_add_unsigned(other.as_secs())?;
 
         // Nano calculations can't overflow because nanos are <1B which fit
         // in a u32.
@@ -53,7 +53,7 @@ impl Timespec {
     }
 
     fn checked_sub_duration(&self, other: &Duration) -> Option<Timespec> {
-        let mut secs = self.tv_sec.checked_sub_unsigned(other.as_secs())?;
+        let mut secs = self.t.tv_sec.checked_sub_unsigned(other.as_secs())?;
 
         // Similar to above, nanos can't overflow.
         let mut nsec = self.t.tv_nsec as i32 - other.subsec_nanos() as i32;