Skip to content

Commit

Permalink
cargo fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
japaric committed Apr 23, 2020
1 parent bdabaf5 commit 2ef4c03
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion firmware/examples/examples/rtfm-10-fs.rs
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,11 @@ const APP: () = {
let filename = filename();
let mut buf = [0; 32];
let n = f.read(&mut buf).unwrap();
println!("[baz] read({}) -> {:?}", filename, str::from_utf8(&buf[..n]));
println!(
"[baz] read({}) -> {:?}",
filename,
str::from_utf8(&buf[..n])
);
f.close().unwrap();
println!("[baz] closed {}", filename);
}
Expand Down

0 comments on commit 2ef4c03

Please sign in to comment.