We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2f8e4f8 commit 25eb5cfCopy full SHA for 25eb5cf
1 file changed
src/main.rs
@@ -74,7 +74,7 @@ fn main() {
74
msg_len = 1;
75
}
76
Err(RecvError) => stdin_eof = true,
77
- };
+ }
78
79
// Give the sender some time to send everything it has to
80
thread::sleep(MIN_RECV_TIME);
@@ -102,7 +102,7 @@ fn main() {
102
103
Err(TryRecvError::Empty) => break 'nonblocking_recv,
104
Err(TryRecvError::Disconnected) => stdin_eof = true,
105
106
107
108
if stdin_eof && msg_len == 0 {
0 commit comments