summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorP. J. McDermott <pj@pehjota.net>2023-10-10 04:43:25 (EDT)
committer P. J. McDermott <pj@pehjota.net>2023-10-12 03:09:06 (EDT)
commita4855fdfcd3a45e3a83b21fc456d62ede5c03c0e (patch)
tree11480d7df10fcab17400e6ef00ccb3f93842fd3a
parent4e4b4dd00ec36d923ff0132cc9a2c3fd20de834f (diff)
downloadatsign-a4855fdfcd3a45e3a83b21fc456d62ede5c03c0e.zip
atsign-a4855fdfcd3a45e3a83b21fc456d62ede5c03c0e.tar.gz
atsign-a4855fdfcd3a45e3a83b21fc456d62ede5c03c0e.tar.bz2
main: Print spaces not tabs in options help
-rw-r--r--src/main.c12
1 files changed, 6 insertions, 6 deletions
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
}