Skip to content

Commit 25eb5cf

Browse files
committed
Removed unnecessary semicolons
1 parent 2f8e4f8 commit 25eb5cf

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/main.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ fn main() {
7474
msg_len = 1;
7575
}
7676
Err(RecvError) => stdin_eof = true,
77-
};
77+
}
7878

7979
// Give the sender some time to send everything it has to
8080
thread::sleep(MIN_RECV_TIME);
@@ -102,7 +102,7 @@ fn main() {
102102
}
103103
Err(TryRecvError::Empty) => break 'nonblocking_recv,
104104
Err(TryRecvError::Disconnected) => stdin_eof = true,
105-
};
105+
}
106106
}
107107

108108
if stdin_eof && msg_len == 0 {

0 commit comments

Comments
 (0)