summaryrefslogtreecommitdiff
path: root/src/stat.c
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2004-01-21 23:45:21 +0000
committerJim Meyering <jim@meyering.net>2004-01-21 23:45:21 +0000
commit623c8ae1478d3343aa2d7c9d3e7f68f67573e4cb (patch)
treeeedceccb98ea8000e37d3a1a0054d43433fb2844 /src/stat.c
parenteb844044d5232ff02d015ea6377184c7e55936d7 (diff)
downloadcoreutils-623c8ae1478d3343aa2d7c9d3e7f68f67573e4cb.tar.xz
(usage): Use EXIT_SUCCESS, not 0, for clarity.
Diffstat (limited to 'src/stat.c')
-rw-r--r--src/stat.c2
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