Skip to content

Commit

Permalink
Fix clippy warning
Browse files Browse the repository at this point in the history
  • Loading branch information
danobi committed Oct 25, 2024
1 parent c8213ea commit 4ef337f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/qemu.rs
Original file line number Diff line number Diff line change
Expand Up @@ -980,7 +980,7 @@ impl Qemu {
}

fn verify_qemu_exists(qemu_program: &str) -> anyhow::Result<()> {
if let Err(e) = Command::new(&qemu_program)
if let Err(e) = Command::new(qemu_program)
.arg("--help")
.stdout(Stdio::null())
.stderr(Stdio::null())
Expand Down

0 comments on commit 4ef337f

Please sign in to comment.