From 68e999b21f6d6e41b22c13ceea7bb3fccc39e707 Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Wed, 21 Jan 2004 23:49:31 +0000 Subject: (usage): Use EXIT_SUCCESS, not 0, for clarity. --- src/uname.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/uname.c') diff --git a/src/uname.c b/src/uname.c index 47f9ff45c..335061d21 100644 --- a/src/uname.c +++ b/src/uname.c @@ -1,7 +1,7 @@ /* uname -- print system information - Copyright 1989, 1992, 1993, 1996, 1997, 1999, 2000, 2001, 2002, 2003 Free - Software Foundation, Inc. + Copyright 1989, 1992, 1993, 1996, 1997, 1999, 2000, 2001, 2002, + 2003, 2004 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -101,7 +101,7 @@ static struct option const long_options[] = void usage (int status) { - if (status != 0) + if (status != EXIT_SUCCESS) fprintf (stderr, _("Try `%s --help' for more information.\n"), program_name); else -- cgit v1.2.3-54-g00ecf