]> git.ipfire.org Git - thirdparty/coreutils.git/commitdiff
(usage): Use EXIT_SUCCESS, not 0, for clarity.
authorJim Meyering <jim@meyering.net>
Wed, 21 Jan 2004 23:45:21 +0000 (23:45 +0000)
committerJim Meyering <jim@meyering.net>
Wed, 21 Jan 2004 23:45:21 +0000 (23:45 +0000)
src/stat.c

index 98d2d08a4ce648f2f1558c093638e2f6ab05324f..b4f7040be799c1ee94492d6ba64799dace7e9016 100644 (file)
@@ -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