Skip to content

Commit 9a8f51e

Browse files
committed
Clippy
1 parent a5dc68a commit 9a8f51e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/gpio.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1590,7 +1590,7 @@ mod atomic_notification {
15901590
self.triggered.store(true, Ordering::SeqCst);
15911591
self.waker.wake();
15921592
}
1593-
pub fn poll_wait(&self, cx: &mut Context<'_>) -> Poll<()> {
1593+
pub fn poll_wait(&self, cx: &Context<'_>) -> Poll<()> {
15941594
self.waker.register(cx.waker());
15951595

15961596
if self.triggered.swap(false, Ordering::SeqCst) {

0 commit comments

Comments
 (0)