Explorar el Código

Remove an unneeded semicolon

Alex Crawford hace 4 años
padre
commit
400432802e
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      examples/dhcp_client.rs

+ 1 - 1
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));
     }
 }