Skip to content

Commit

Permalink
remove confusing clippy hint
Browse files Browse the repository at this point in the history
  • Loading branch information
JannesBrands committed Feb 22, 2024
1 parent 4b32adf commit 6a51750
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions examples/forward.rs
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,7 @@ fn main() {

#[cfg(target_os = "linux")]
|opts: Options| {
let (mut input, mut output) =
open_can_interface(&opts.input_interface, &opts.output_interface);
let (input, output) = open_can_interface(&opts.input_interface, &opts.output_interface);
input
.set_nonblocking(true)
.expect("Could not set input bus to non-blocking!");
Expand Down

0 comments on commit 6a51750

Please sign in to comment.