From: Jim Meyering Date: Wed, 21 Jan 2004 23:45:21 +0000 (+0000) Subject: (usage): Use EXIT_SUCCESS, not 0, for clarity. X-Git-Tag: v5.1.2~52 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=623c8ae1478d3343aa2d7c9d3e7f68f67573e4cb;p=thirdparty%2Fcoreutils.git (usage): Use EXIT_SUCCESS, not 0, for clarity. --- diff --git a/src/stat.c b/src/stat.c index 98d2d08a4c..b4f7040be7 100644 --- a/src/stat.c +++ b/src/stat.c @@ -687,7 +687,7 @@ do_stat (char const *filename, int follow_links, int terse, void usage (int status) { - if (status != 0) + if (status != EXIT_SUCCESS) fprintf (stderr, _("Try `%s --help' for more information.\n"), program_name); else