From 33236f23f40e3ef91d50c538df222f09390d1611 Mon Sep 17 00:00:00 2001 From: Alex Crawford Date: Mon, 28 Dec 2020 22:17:46 -0800 Subject: [PATCH] Remove an unneeded semicolon --- examples/dhcp_client.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/dhcp_client.rs b/examples/dhcp_client.rs index a751e59..daabc9c 100644 --- a/examples/dhcp_client.rs +++ b/examples/dhcp_client.rs @@ -95,6 +95,6 @@ fn main() { iface.poll_delay(&sockets, timestamp) .map(|sockets_timeout| timeout = sockets_timeout); phy_wait(fd, Some(timeout)) - .unwrap_or_else(|e| println!("Wait: {:?}", e));; + .unwrap_or_else(|e| println!("Wait: {:?}", e)); } }