diff --git a/src/adapters/udp.rs b/src/adapters/udp.rs index 1020795..a10e990 100644 --- a/src/adapters/udp.rs +++ b/src/adapters/udp.rs @@ -464,7 +464,7 @@ fn send_packet(data: &[u8], send_method: impl Fn(&[u8]) -> io::Result) -> } Err(err) => { log::error!("UDP send error: {}", err); - break SendStatus::ResourceNotFound; // should not happen + break SendStatus::ResourceNotFound // should not happen } } }