Skip to content

Commit

Permalink
Fix fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
Rawa committed Feb 18, 2025
1 parent e401796 commit e1f9189
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion talpid-core/src/tunnel_state_machine/connecting_state.rs
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ impl ConnectingState {
// interface and this call should be part of start_tunnel call instead
#[cfg(target_os = "android")]
shared_values.prepare_tun_config(false);

let connecting_state = Self::start_tunnel(
shared_values.runtime.clone(),
tunnel_parameters,
Expand Down
2 changes: 1 addition & 1 deletion talpid-routing/src/unix/android.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
use std::collections::HashSet;
use std::ops::{ControlFlow};
use std::ops::ControlFlow;
use std::sync::Mutex;

use futures::channel::mpsc::{self, UnboundedReceiver, UnboundedSender};
Expand Down
2 changes: 1 addition & 1 deletion talpid-routing/src/unix/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ impl RouteManagerHandle {
}

/// xD
///
///
#[cfg(target_os = "android")]
pub async fn clear_android_routes(&self) -> Result<(), Error> {
let (result_tx, result_rx) = oneshot::channel();
Expand Down
2 changes: 1 addition & 1 deletion talpid-wireguard/src/wireguard_go/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -476,7 +476,7 @@ impl WgGoTunnel {

// This seemingly fixes the GO crash we see
tunnel.ensure_tunnel_is_running().await?;

Ok(tunnel)
}

Expand Down

0 comments on commit e1f9189

Please sign in to comment.