aboutsummaryrefslogtreecommitdiff
path: root/embassy-executor/src/raw
diff options
context:
space:
mode:
Diffstat (limited to 'embassy-executor/src/raw')
-rw-r--r--embassy-executor/src/raw/timer_queue.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/embassy-executor/src/raw/timer_queue.rs b/embassy-executor/src/raw/timer_queue.rs
index cd9a73822..2ba0e00a9 100644
--- a/embassy-executor/src/raw/timer_queue.rs
+++ b/embassy-executor/src/raw/timer_queue.rs
@@ -22,7 +22,7 @@ impl TimerQueueItem {
22 pub(crate) const fn new() -> Self { 22 pub(crate) const fn new() -> Self {
23 Self { 23 Self {
24 next: Cell::new(None), 24 next: Cell::new(None),
25 expires_at: Cell::new(u64::MAX), 25 expires_at: Cell::new(0),
26 } 26 }
27 } 27 }
28} 28}