Fix a bug identified during code review
This commit is contained in:
parent
516f4ce946
commit
ac6995f9e6
1 changed files with 2 additions and 2 deletions
|
@ -1,5 +1,5 @@
|
|||
use core::cell::RefCell;
|
||||
use core::cmp::Ordering;
|
||||
use core::cmp::{min, Ordering};
|
||||
use core::task::Waker;
|
||||
|
||||
use embassy_sync::blocking_mutex::raw::CriticalSectionRawMutex;
|
||||
|
@ -74,7 +74,7 @@ impl InnerQueue {
|
|||
self.queue
|
||||
.find_mut(|timer| timer.waker.will_wake(waker))
|
||||
.map(|mut timer| {
|
||||
timer.at = at;
|
||||
timer.at = min(timer.at, at);
|
||||
timer.finish();
|
||||
})
|
||||
.unwrap_or_else(|| {
|
||||
|
|
Loading…
Add table
Reference in a new issue