Skip to content

Commit

Permalink
Fixed cargo clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
lemunozm committed Dec 15, 2021
1 parent a35e80c commit c8c2d5d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/commands/send_stream/linux.rs
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ impl Action for SendStream {
let (data, _metadata) = match self.stream.next() {
Ok(d) => d,
Err(e) => {
e.to_string().report_err(&mut state);
e.to_string().report_err(state);
self.send_all(network, state.all_user_endpoints(), NetMessage::Stream(None));
return Processing::Completed
}
Expand Down

0 comments on commit c8c2d5d

Please sign in to comment.