Skip to content

Commit 353fbe6

Browse files
Format Rust code using rustfmt
1 parent bb71f07 commit 353fbe6

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/main.rs

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,11 @@ use std::collections::HashSet;
2121
use std::fs;
2222
use std::fs::File;
2323
use std::io::stdout;
24+
use std::io::stdout;
2425
use std::io::BufReader;
2526
use std::io::Read;
2627
use std::io::Seek;
2728
use std::io::SeekFrom;
28-
use std::io::stdout;
2929
use std::path::Path;
3030
use std::path::PathBuf;
3131
use structopt::StructOpt;
@@ -703,7 +703,9 @@ fn dump_bhd_directory<'a, T: FlashRead + FlashWrite>(
703703
)
704704
.unwrap();
705705

706-
let apcb_options = ApcbIoOptions::builder().with_check_checksum(false).build();
706+
let apcb_options = ApcbIoOptions::builder()
707+
.with_check_checksum(false)
708+
.build();
707709
let apcb = Apcb::load(
708710
std::borrow::Cow::Borrowed(
709711
&mut apcb_buffer[..],

0 commit comments

Comments
 (0)