diff --git a/examples/tcp_client.rs b/examples/tcp_client.rs index c92313f..b4582b6 100644 --- a/examples/tcp_client.rs +++ b/examples/tcp_client.rs @@ -93,7 +93,7 @@ fn main() -> io::Result<()> { for stream in listener.incoming() { let mut stream = match stream { Ok(stream) => stream, - Err(e) => { + Err(_) => { continue; } };