aboutsummaryrefslogtreecommitdiffstats
path: root/src/uptime.c
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2003-09-18 18:22:23 +0000
committerJim Meyering <jim@meyering.net>2003-09-18 18:22:23 +0000
commit3280bf4b5571fd4425c7e6f7d765d08b77ce8d8a (patch)
tree2e9536eaec036a182d71472659ee9cc055c1c31b /src/uptime.c
parent*** empty log message *** (diff)
downloadcoreutils-3280bf4b5571fd4425c7e6f7d765d08b77ce8d8a.tar.gz
coreutils-3280bf4b5571fd4425c7e6f7d765d08b77ce8d8a.zip
Update AUTHORS definition to be a comma-separated list of strings and/or update
the call to parse_long_options so that `AUTHORS, NULL' are the last parameters.
Diffstat (limited to 'src/uptime.c')
-rw-r--r--src/uptime.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/uptime.c b/src/uptime.c
index c987a2a32..371e60b47 100644
--- a/src/uptime.c
+++ b/src/uptime.c
@@ -35,7 +35,7 @@
/* The official name of this program (e.g., no `g' prefix). */
#define PROGRAM_NAME "uptime"
-#define AUTHORS N_ ("Joseph Arceneaux, David MacKenzie, and Kaveh Ghazi")
+#define AUTHORS "Joseph Arceneaux", "David MacKenzie", "Kaveh Ghazi"
int getloadavg ();
@@ -216,7 +216,7 @@ main (int argc, char **argv)
atexit (close_stdout);
parse_long_options (argc, argv, PROGRAM_NAME, GNU_PACKAGE, VERSION,
- AUTHORS, usage);
+ usage, AUTHORS, NULL);
while ((optc = getopt_long (argc, argv, "", longopts, &longind)) != -1)
{