(usage): Use EXIT_SUCCESS, not 0, for clarity.
authorJim Meyering <jim@meyering.net>
Wed, 21 Jan 2004 23:46:07 +0000 (23:46 +0000)
committerJim Meyering <jim@meyering.net>
Wed, 21 Jan 2004 23:46:07 +0000 (23:46 +0000)
(usage): Don't bother normalizing exit status
since the arg is already the correct exit status now.

src/tac.c
src/tail.c

index 172f0d701f9079ffc7111c3b5d906b1b863320f2..600d061067a8659410b12064b934c8302efcbe02 100644 (file)
--- a/src/tac.c
+++ b/src/tac.c
@@ -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.
index 7e574a3ebafb7025e64f47e7c2ef5a613e76f680..d5c0c31d8c9f84ca5b12ff924142203abaf5b486 100644 (file)
@@ -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