diff --git a/src/setup/channels.rs b/src/setup/channels.rs index ef899a65..58edf5d9 100644 --- a/src/setup/channels.rs +++ b/src/setup/channels.rs @@ -566,7 +566,7 @@ async fn setup_tunnel_cloudflare() -> Result /// Detect running cloudflared processes or managed services that could conflict /// with IronClaw's tunnel management. fn detect_existing_cloudflared() -> Option { - let mut conflicts = Vec::new(); + let mut conflicts: Vec = Vec::new(); // Check for running cloudflared processes (all platforms) #[cfg(unix)]