aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPoul-Henning Kamp <phk@FreeBSD.org>2026-03-20 10:32:30 +0000
committerPoul-Henning Kamp <phk@FreeBSD.org>2026-03-20 10:32:30 +0000
commita0170dbd4e1abba2b1975ebb37f6051a936c7f9a (patch)
tree9b93e82b46ce6cad8c6578ba61c6617319cfe722
parent33345b8834859cf1ad7f1256f3a34b4a7c83e8e8 (diff)
"Pending" is more correct than "Missing"
Pointed out by: Alex "the PS/2 guy"
-rw-r--r--sbin/recoverdisk/recoverdisk.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sbin/recoverdisk/recoverdisk.c b/sbin/recoverdisk/recoverdisk.c
index a002a8304579..d1ce11b51815 100644
--- a/sbin/recoverdisk/recoverdisk.c
+++ b/sbin/recoverdisk/recoverdisk.c
@@ -280,7 +280,7 @@ report(uint64_t sz)
report_periods();
report_hline("\xe2\x94\xb4");
}
- printf("Missing: %u", nlumps);
+ printf("Pending: %u", nlumps);
printf(" Success: %.0f/%.0f =", n_good_reads, n_reads);
printf(" %.4f%%", 100 * n_good_reads / n_reads);
printf(" Duration: %.3fs", (t_now - t_first) / n_reads);