From c32acff3e4a05d3e36a5bafc9728fa372f4f3e81 Mon Sep 17 00:00:00 2001 From: MattJackson <1085847+MattJackson@users.noreply.github.com> Date: Sun, 10 May 2026 22:00:08 -0700 Subject: [PATCH] disc/read_error: rustfmt fixup for wedge-prevention commit --- src/disc/read_error.rs | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/disc/read_error.rs b/src/disc/read_error.rs index 89ceb82..8774148 100644 --- a/src/disc/read_error.rs +++ b/src/disc/read_error.rs @@ -637,9 +637,8 @@ pub fn handle_read_error(err: &Error, ctx: &mut ReadCtx) -> ReadAction { // branch for future tuning. Pass N (bisect_on_marginal=true) // uses the standard pauses — it's running single-sector retries // on already-known-bad LBAs by design. - let is_zone_entry = ctx.consecutive_outer_failures == 1 - && !ctx.bisecting - && !ctx.bisect_on_marginal; + let is_zone_entry = + ctx.consecutive_outer_failures == 1 && !ctx.bisecting && !ctx.bisect_on_marginal; let pause_secs = if is_zone_entry { ZONE_ENTRY_COOLDOWN_SECS } else if ctx.consecutive_failures >= CONSECUTIVE_FAIL_LONG_PAUSE_THRESHOLD {