From b8d43c94371a1ff0834b6103e35dad05688d7cce Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Thu, 22 Jan 2004 21:04:26 +0000 Subject: [PATCH] (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. --- src/touch.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/touch.c b/src/touch.c index 21b29e50b7..728f62c3fd 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); } -- 2.47.2