git: a0170dbd4e1a - main - "Pending" is more correct than "Missing"
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Fri, 20 Mar 2026 10:33:12 UTC
The branch main has been updated by phk:
URL: https://cgit.FreeBSD.org/src/commit/?id=a0170dbd4e1abba2b1975ebb37f6051a936c7f9a
commit a0170dbd4e1abba2b1975ebb37f6051a936c7f9a
Author: Poul-Henning Kamp <phk@FreeBSD.org>
AuthorDate: 2026-03-20 10:32:30 +0000
Commit: Poul-Henning Kamp <phk@FreeBSD.org>
CommitDate: 2026-03-20 10:32:30 +0000
"Pending" is more correct than "Missing"
Pointed out by: Alex "the PS/2 guy"
---
sbin/recoverdisk/recoverdisk.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
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);