Remove an unneeded semicolon

v0.7.x
Alex Crawford 2020-12-28 22:17:46 -08:00
parent 0e21e8524f
commit 33236f23f4
1 changed files with 1 additions and 1 deletions

View File

@ -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));
}
}