Skip to content

Commit ccbc4bd

Browse files
committed
clear stream impl for OutputStream
1 parent 2809725 commit ccbc4bd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/simple.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ impl<'a, U: Command> Stream for OutputStream<'a, U> {
9393
type Item = Result<U::Output, CommandError>;
9494

9595
fn poll_next(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Option<Self::Item>> {
96-
self.client.poll_recv::<U>(cx)
96+
self.poll_recv(cx)
9797
}
9898
}
9999

0 commit comments

Comments
 (0)