diff options
Diffstat (limited to 'src/true.c')
-rw-r--r-- | src/true.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/true.c b/src/true.c index 46b41b988..66d1e0111 100644 --- a/src/true.c +++ b/src/true.c @@ -39,11 +39,11 @@ usage (int status) Usage: %s [ignored command line arguments]\n\ or: %s OPTION\n\ "), - program_name, program_name); + program_name, program_name); printf ("%s\n\n", - _(EXIT_STATUS == EXIT_SUCCESS - ? N_("Exit with a status code indicating success.") - : N_("Exit with a status code indicating failure."))); + _(EXIT_STATUS == EXIT_SUCCESS + ? N_("Exit with a status code indicating success.") + : N_("Exit with a status code indicating failure."))); fputs (HELP_OPTION_DESCRIPTION, stdout); fputs (VERSION_OPTION_DESCRIPTION, stdout); printf (USAGE_BUILTIN_WARNING, PROGRAM_NAME); @@ -67,11 +67,11 @@ main (int argc, char **argv) if (argc == 2) { if (STREQ (argv[1], "--help")) - usage (EXIT_STATUS); + usage (EXIT_STATUS); if (STREQ (argv[1], "--version")) - version_etc (stdout, PROGRAM_NAME, PACKAGE_NAME, Version, AUTHORS, - (char *) NULL); + version_etc (stdout, PROGRAM_NAME, PACKAGE_NAME, Version, AUTHORS, + (char *) NULL); } exit (EXIT_STATUS); |