f665929d96
The #[cfg(target_os = "redox")] variant of wait_for_shutdown had dead code after the tokio::select! block. The select already returns Result<(), _>, so the trailing Ok(()) was unreachable and caused a type mismatch when the compiler tried to coerce the select result into (). Remove the dead code.