]> git.ipfire.org Git - thirdparty/coreutils.git/commitdiff
(main): Include author name argument in call to parse_long_options.
authorJim Meyering <jim@meyering.net>
Thu, 4 Mar 1999 05:33:22 +0000 (05:33 +0000)
committerJim Meyering <jim@meyering.net>
Thu, 4 Mar 1999 05:33:22 +0000 (05:33 +0000)
src/tsort.c

index 270632ffeae7dd2b4543a96aa2538457441783d2..b863cfce6aeb5ed23c9c6c5361626bf3712377c3 100644 (file)
@@ -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)