Skip to content

Commit a5ecc5e

Browse files
committed
fix: solve warnings
Signed-off-by: YdrMaster <[email protected]>
1 parent 7a02251 commit a5ecc5e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

xtask/src/main.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -194,9 +194,9 @@ impl QemuArgs {
194194
if let Err(e) = status {
195195
if e.kind() == io::ErrorKind::NotFound {
196196
println!("xtask: QEMU command not found. Does your system have QEMU installed and environment variable configured?");
197-
println!("xtask: error: {}", e);
197+
println!("xtask: error: {e}");
198198
} else {
199-
println!("xtask: error: {}", e);
199+
println!("xtask: error: {e}");
200200
}
201201
process::exit(1);
202202
}

0 commit comments

Comments
 (0)