From 1c39dc60559a466093b00292dd83b8ca1cac02e8 Mon Sep 17 00:00:00 2001 From: Bernhard Voelker Date: Mon, 13 Oct 2025 22:09:28 +0200 Subject: [PATCH] find: fix minor typo in --help output * find/util.c (usage): Terminate sentence about -D with a dot. (show_valid_debug_options): While at it, add indentation for -D values. --- find/util.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/find/util.c b/find/util.c index b22e6e7b..75f99d09 100644 --- a/find/util.c +++ b/find/util.c @@ -148,7 +148,7 @@ show_valid_debug_options (int full) { for (i=0; i0 ? ", " : ""), debugassoc[i].name); + fprintf (stdout, "%s%s", (i>0 ? ", " : " "), debugassoc[i].name); } } } @@ -206,7 +206,7 @@ Other common options:\n")); show_valid_debug_options (0); HTL (_("\n\ -Use '-D help' for a description of the options, or see find(1)\n\ +Use '-D help' for a description of the options, or see find(1).\n\ \n")); explain_how_to_report_bugs (stdout, program_name);