From a4855fdfcd3a45e3a83b21fc456d62ede5c03c0e Mon Sep 17 00:00:00 2001 From: P. J. McDermott Date: Tue, 10 Oct 2023 04:43:25 -0400 Subject: main: Print spaces not tabs in options help --- diff --git a/src/main.c b/src/main.c index 96bbb5a..0ff76c9 100644 --- a/src/main.c +++ b/src/main.c @@ -74,14 +74,14 @@ _print_help(const char *program_name) _print_usage(stdout, program_name); #if defined(HAVE_GETOPT_LONG) && HAVE_GETOPT_LONG puts(_("Options:\n" - "\t-F, --list-formats List all supported date and time formats\n" - "\t-h, --help Show this help information\n" - "\t-V, --version Show version information")); + " -F, --list-formats List all supported date and time formats\n" + " -h, --help Show this help information\n" + " -V, --version Show version information")); #else puts(_("Options:\n" - "\t-F List all supported date and time formats\n" - "\t-h Show this help information\n" - "\t-V Show version information")); + " -F List all supported date and time formats\n" + " -h Show this help information\n" + " -V Show version information")); #endif } -- cgit v0.9.1