style: Removed redundant '&' from paths module function calls

This commit is contained in:
2026-07-13 17:12:58 -06:00
parent bc3cc10a7b
commit 382916c3ee
4 changed files with 8 additions and 8 deletions
+1 -1
View File
@@ -563,7 +563,7 @@ async fn shell_execute(
match answer_char {
'e' => {
debug!("{} {:?}", shell.cmd, &[&shell.arg, &eval_str]);
debug!("{} {:?}", shell.cmd, [&shell.arg, &eval_str]);
let code = run_command(&shell.cmd, &[&shell.arg, &eval_str], None)?;
if code == 0 && app.save_shell_history {
let _ = append_to_shell_history(&shell.name, &eval_str, code);