From f33f93a6e4a1ea505e056344fe209ed24bc59ba2 Mon Sep 17 00:00:00 2001 From: Irving Ou Date: Wed, 7 Feb 2024 12:26:11 -0500 Subject: [PATCH] CI --- examples/tcp_client.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } };