diff options
author | Jim Meyering <jim@meyering.net> | 2004-01-21 23:46:07 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2004-01-21 23:46:07 +0000 |
commit | 73882061186b93fca96218526c01ed33952e2fb2 (patch) | |
tree | a46039597fdf75c0687e5b7d0b7329432d67eb30 /src | |
parent | 4b5c8fe38786a34d0bb537b935f3a23bd5dead14 (diff) | |
download | coreutils-73882061186b93fca96218526c01ed33952e2fb2.tar.xz |
(usage): Use EXIT_SUCCESS, not 0, for clarity.
(usage): Don't bother normalizing exit status
since the arg is already the correct exit status now.
Diffstat (limited to 'src')
-rw-r--r-- | src/tac.c | 6 | ||||
-rw-r--r-- | src/tail.c | 4 |
2 files changed, 5 insertions, 5 deletions
@@ -1,5 +1,5 @@ /* tac - concatenate and print files in reverse - Copyright (C) 1988-1991, 1995-2003 Free Software Foundation, Inc. + Copyright (C) 1988-1991, 1995-2004 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -118,7 +118,7 @@ static struct option const longopts[] = void usage (int status) { - if (status != 0) + if (status != EXIT_SUCCESS) fprintf (stderr, _("Try `%s --help' for more information.\n"), program_name); else @@ -144,7 +144,7 @@ Mandatory arguments to long options are mandatory for short options too.\n\ fputs (VERSION_OPTION_DESCRIPTION, stdout); printf (_("\nReport bugs to <%s>.\n"), PACKAGE_BUGREPORT); } - exit (status == 0 ? EXIT_SUCCESS : EXIT_FAILURE); + exit (status); } /* Print the characters from START to PAST_END - 1. diff --git a/src/tail.c b/src/tail.c index 7e574a3eb..d5c0c31d8 100644 --- a/src/tail.c +++ b/src/tail.c @@ -230,7 +230,7 @@ static struct option const long_options[] = void usage (int status) { - if (status != 0) + if (status != EXIT_SUCCESS) fprintf (stderr, _("Try `%s --help' for more information.\n"), program_name); else @@ -303,7 +303,7 @@ recreated by some other program.\n\ "), stdout); printf (_("\nReport bugs to <%s>.\n"), PACKAGE_BUGREPORT); } - exit (status == 0 ? EXIT_SUCCESS : EXIT_FAILURE); + exit (status); } static int |