Skip to content

Commit

Permalink
Fix clippy::needless_borrow
Browse files Browse the repository at this point in the history
  • Loading branch information
mkroening committed Dec 12, 2022
1 parent d6995c1 commit f25f245
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xtask/src/archive.rs
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ impl Archive {
.collect::<String>();

let rename_path = archive.with_extension("redefine-syms");
sh.write_file(&rename_path, &symbol_renames)?;
sh.write_file(&rename_path, symbol_renames)?;

let objcopy = binutil("objcopy")?;
cmd!(sh, "{objcopy} --prefix-symbols={prefix}_ {archive}").run()?;
Expand Down

0 comments on commit f25f245

Please sign in to comment.