cargo fmt

This commit is contained in:
Scott Lamb 2022-08-09 06:37:14 -07:00
parent 26a7e86076
commit 65c7cf8c5f

View File

@ -2360,12 +2360,12 @@ impl futures::Stream for Session<Playing> {
},
Poll::Ready(Some(Err(e))) => {
debug!("RTSP connection error: {:?}", e);
return Poll::Ready(Some(Err(e)))
},
return Poll::Ready(Some(Err(e)));
}
Poll::Ready(None) => {
debug!("Server closed RTSP connection");
return Poll::Ready(None)
},
return Poll::Ready(None);
}
std::task::Poll::Pending => {}
}