Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion ipc/src/select_with_weak.rs
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ where
checked_strong = true;
} else {
this.use_strong = true;
match Pin::new(&mut this.strong).poll_next(cx) {
match Pin::new(&mut this.weak).poll_next(cx) {
Poll::Ready(Some(item)) => return Poll::Ready(Some(item)),
Poll::Ready(None) | Poll::Pending => (),
}
Expand Down