fix: iso_dump example missing recovery arg

This commit is contained in:
Matt Jackson
2026-04-21 18:41:41 +00:00
parent d8089ec491
commit afae37c8c3
+1 -1
View File
@@ -42,7 +42,7 @@ fn main() {
// Tiny yield between reads — test if pacing prevents firmware throttle // Tiny yield between reads — test if pacing prevents firmware throttle
std::thread::yield_now(); std::thread::yield_now();
let t0 = Instant::now(); let t0 = Instant::now();
let ok = drive.read(lba, count, &mut buf[..n]).is_ok(); let ok = drive.read(lba, count, &mut buf[..n], true).is_ok();
let read_ms = t0.elapsed().as_millis(); let read_ms = t0.elapsed().as_millis();
// Flag slow reads // Flag slow reads