Skip to content

Commit

Permalink
fix linting
Browse files Browse the repository at this point in the history
  • Loading branch information
conectado committed Mar 20, 2024
1 parent e2b3e41 commit 14cc68a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions rust/connlib/clients/android/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -497,9 +497,9 @@ pub unsafe extern "system" fn Java_dev_firezone_android_tunnel_ConnlibSession_se
#[allow(non_snake_case)]
#[no_mangle]
pub unsafe extern "system" fn Java_dev_firezone_android_tunnel_ConnlibSession_reconnect(
mut env: JNIEnv,
_: JNIEnv,
_: JClass,
session: *const SessionWrapper,
) {
(&*session).inner.reconnect();
(*session).inner.reconnect();
}

0 comments on commit 14cc68a

Please sign in to comment.