Skip to content

Commit

Permalink
1.66.1 fix
Browse files Browse the repository at this point in the history
  • Loading branch information
neonphog committed Sep 18, 2023
1 parent fe95e8b commit 05642c2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ tool_clippy: tool_rust
tool_readme: tool_rust
@if ! (cargo rdme --version); \
then \
cargo install cargo-rdme --version 1.4.0; \
cargo install cargo-rdme --version 1.4.0 --locked; \
else \
echo "# Makefile # readme ok"; \
fi;
2 changes: 1 addition & 1 deletion crates/tx5-pipe-control/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ pub mod control_impl {
/// Report a message from the server.
pub fn handle_response(&self, resp: Tx5PipeResponse) {
if let Some(cmd_id) = resp.get_cmd_id() {
self.resp_cache.lock().unwrap().resp(cmd_id.clone(), resp);
self.resp_cache.lock().unwrap().resp(cmd_id, resp);
return;
}

Expand Down

0 comments on commit 05642c2

Please sign in to comment.