diff --git a/ev3-tunnel-exit/src/main.rs b/ev3-tunnel-exit/src/main.rs index 0d5b74d..b021d21 100644 --- a/ev3-tunnel-exit/src/main.rs +++ b/ev3-tunnel-exit/src/main.rs @@ -122,6 +122,6 @@ fn main() { // Join every ev3-controlling-thread to keep the main-thread alive for handle in handles { - handle.join().expect("[!] The thread we joined panicked!"); + let _ = handle.join(); } }