We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bb71f07 commit 353fbe6Copy full SHA for 353fbe6
src/main.rs
@@ -21,11 +21,11 @@ use std::collections::HashSet;
21
use std::fs;
22
use std::fs::File;
23
use std::io::stdout;
24
+use std::io::stdout;
25
use std::io::BufReader;
26
use std::io::Read;
27
use std::io::Seek;
28
use std::io::SeekFrom;
-use std::io::stdout;
29
use std::path::Path;
30
use std::path::PathBuf;
31
use structopt::StructOpt;
@@ -703,7 +703,9 @@ fn dump_bhd_directory<'a, T: FlashRead + FlashWrite>(
703
)
704
.unwrap();
705
706
- let apcb_options = ApcbIoOptions::builder().with_check_checksum(false).build();
+ let apcb_options = ApcbIoOptions::builder()
707
+ .with_check_checksum(false)
708
+ .build();
709
let apcb = Apcb::load(
710
std::borrow::Cow::Borrowed(
711
&mut apcb_buffer[..],
0 commit comments