summaryrefslogtreecommitdiff
path: root/src/users.c
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2004-01-21 23:49:31 +0000
committerJim Meyering <jim@meyering.net>2004-01-21 23:49:31 +0000
commit68e999b21f6d6e41b22c13ceea7bb3fccc39e707 (patch)
treebbed061a430aa9c60e1eea7ce2861eee9e40a6c1 /src/users.c
parent36504c3b09ff9d4327181d23bb2ea0c3be9a67ca (diff)
downloadcoreutils-68e999b21f6d6e41b22c13ceea7bb3fccc39e707.tar.xz
(usage): Use EXIT_SUCCESS, not 0, for clarity.
Diffstat (limited to 'src/users.c')
-rw-r--r--src/users.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/users.c b/src/users.c
index 7fbc8c604..733024af1 100644
--- a/src/users.c
+++ b/src/users.c
@@ -1,5 +1,5 @@
/* GNU's users.
- Copyright (C) 1992-2003 Free Software Foundation, Inc.
+ Copyright (C) 1992-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
@@ -111,7 +111,7 @@ users (const char *filename)
void
usage (int status)
{
- if (status != 0)
+ if (status != EXIT_SUCCESS)
fprintf (stderr, _("Try `%s --help' for more information.\n"),
program_name);
else