Skip to content

Commit e88ee0a

Browse files
authored
Fix formatting
1 parent 5c5ef6e commit e88ee0a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/io/mod.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -800,10 +800,10 @@ impl Stream {
800800
Ok(s_stream) => s_stream,
801801
Err(handshake_err) => match handshake_err {
802802
ssl::HandshakeError::SetupFailure(err) => {
803-
return Err(err.into())
803+
return Err(err.into());
804804
}
805805
ssl::HandshakeError::Failure(mid_stream) => {
806-
return Err(mid_stream.into_error().into())
806+
return Err(mid_stream.into_error().into());
807807
}
808808
ssl::HandshakeError::WouldBlock(_mid_stream) => unreachable!(),
809809
},

0 commit comments

Comments
 (0)