diff options
author | Jim Meyering <jim@meyering.net> | 2004-01-21 23:45:21 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2004-01-21 23:45:21 +0000 |
commit | 623c8ae1478d3343aa2d7c9d3e7f68f67573e4cb (patch) | |
tree | eedceccb98ea8000e37d3a1a0054d43433fb2844 | |
parent | eb844044d5232ff02d015ea6377184c7e55936d7 (diff) | |
download | coreutils-623c8ae1478d3343aa2d7c9d3e7f68f67573e4cb.tar.xz |
(usage): Use EXIT_SUCCESS, not 0, for clarity.
-rw-r--r-- | src/stat.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/stat.c b/src/stat.c index 98d2d08a4..b4f7040be 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 |