diff options
author | Jim Meyering <jim@meyering.net> | 1999-03-04 05:33:22 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 1999-03-04 05:33:22 +0000 |
commit | 0ae96f236175101ddc6c8f0eaf46d08f88173486 (patch) | |
tree | cf5ecb22dd7271c5c1bd5fecffee62ad7fc5507d | |
parent | 32deb2026bc15689a864ce6ecb7ebb486625ed18 (diff) | |
download | coreutils-0ae96f236175101ddc6c8f0eaf46d08f88173486.tar.xz |
(main): Include author name argument in call to parse_long_options.
-rw-r--r-- | src/tsort.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/tsort.c b/src/tsort.c index 270632ffe..b863cfce6 100644 --- a/src/tsort.c +++ b/src/tsort.c @@ -29,8 +29,8 @@ #include <assert.h> #include <getopt.h> -#include "long-options.h" #include "system.h" +#include "long-options.h" #include "error.h" #include "readtokens.h" @@ -456,7 +456,8 @@ main (int argc, char **argv) bindtextdomain (PACKAGE, LOCALEDIR); textdomain (PACKAGE); - parse_long_options (argc, argv, "tsort", GNU_PACKAGE, VERSION, usage); + parse_long_options (argc, argv, "tsort", GNU_PACKAGE, VERSION, + "Mark Kettenis", usage); while ((opt = getopt_long (argc, argv, "", long_options, NULL)) != -1) switch (opt) |