Skip to content

Commit 2b9137c

Browse files
committed
fmt
1 parent b162e90 commit 2b9137c

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

uboot-shell/examples/loady.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ use uboot_shell::UbootShell;
1010
fn main() {
1111
let (mut out, mut uboot) = new_uboot();
1212

13-
uboot.loady(0x40200000, "Cargo.toml", |r, a| {}).unwrap();
13+
uboot.loady(0x40200000, "Cargo.toml", |_r, _a| {}).unwrap();
1414

1515
println!("finish");
1616
let _ = out.kill();

uboot-shell/src/lib.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ use std::{
22
fs::File,
33
io::*,
44
path::PathBuf,
5-
sync::Mutex,
65
time::{Duration, Instant},
76
};
87

0 commit comments

Comments
 (0)