From 32abba7201f4045d31bc7c7df43683028989b4aa Mon Sep 17 00:00:00 2001 From: Matt Corallo Date: Wed, 27 Jan 2021 23:01:37 -0500 Subject: [PATCH] Drop spurious semicolon that new rustc complains about --- lightning-net-tokio/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lightning-net-tokio/src/lib.rs b/lightning-net-tokio/src/lib.rs index b8b33318..80f7e055 100644 --- a/lightning-net-tokio/src/lib.rs +++ b/lightning-net-tokio/src/lib.rs @@ -157,7 +157,7 @@ impl Connection { // In this case, we do need to call peer_manager.socket_disconnected() to inform // Rust-Lightning that the socket is gone. PeerDisconnected - }; + } let disconnect_type = loop { macro_rules! shutdown_socket { ($err: expr, $need_disconnect: expr) => { { -- 2.30.2