diff options
author | Jim Meyering <jim@meyering.net> | 2004-01-22 21:04:26 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2004-01-22 21:04:26 +0000 |
commit | b8d43c94371a1ff0834b6103e35dad05688d7cce (patch) | |
tree | 611a8a4558ea12ff387bc0763f8459c54de664bd | |
parent | ae3cdb71e99f18b2deb72d8108052da593440c31 (diff) | |
download | coreutils-b8d43c94371a1ff0834b6103e35dad05688d7cce.tar.xz |
(usage): Use EXIT_SUCCESS, not 0, for clarity.
(err): Now a boolean int, not a counter,
so that we don't have to worry about int overflow. All uses changed.
-rw-r--r-- | src/touch.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/touch.c b/src/touch.c index 21b29e50b..728f62c3f 100644 --- a/src/touch.c +++ b/src/touch.c @@ -240,7 +240,7 @@ touch (const char *file) void usage (int status) { - if (status != 0) + if (status != EXIT_SUCCESS) fprintf (stderr, _("Try `%s --help' for more information.\n"), program_name); else @@ -433,7 +433,7 @@ main (int argc, char **argv) } for (; optind < argc; ++optind) - err += touch (argv[optind]); + err |= touch (argv[optind]); - exit (err != 0); + exit (err == 0 ? EXIT_SUCCESS : EXIT_FAILURE); } |