Skip to content

Commit

Permalink
Fix unused variable lint in receiver.rs
Browse files Browse the repository at this point in the history
  • Loading branch information
Wrench56 committed Nov 5, 2024
1 parent fba1915 commit 572c924
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/src-tauri/src/tcp/receiver.rs
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ fn handle_connection(mut stream: &TcpStream, mut prod: Producer<u8, TCPRingbuffe
statusbar::update_connection_status(false);
break 'outer;
}
Err(ref e) => {
Err(ref _e) => {
break 'outer;
}
};
Expand Down

0 comments on commit 572c924

Please sign in to comment.