diff 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) |