Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
barnabwhy committed Sep 11, 2023
1 parent de0704a commit d2c9fc1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion alvr/server/src/connection.rs
Original file line number Diff line number Diff line change
Expand Up @@ -758,7 +758,8 @@ fn try_connect(mut client_ips: HashMap<IpAddr, String>) -> ConResult {
.map(|(id, motion)| tracking::to_ffi_motion(id, motion))
.collect::<Vec<_>>();
let mut ffi_left_hand_skeleton = left_hand_skeleton.map(tracking::to_ffi_skeleton);
let mut ffi_right_hand_skeleton = right_hand_skeleton.map(tracking::to_ffi_skeleton);
let mut ffi_right_hand_skeleton =
right_hand_skeleton.map(tracking::to_ffi_skeleton);

drop(tracking_manager_lock);

Expand Down

0 comments on commit d2c9fc1

Please sign in to comment.