From 3b10b3ab9bae09c183405f42674b1654ac5128a8 Mon Sep 17 00:00:00 2001 From: Matthew Jackson 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 f9408b1..c57aa6e 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 {