examples/parse_args.h: move some options down
authorPaul Brossier <piem@piem.org>
Sun, 8 Dec 2013 01:14:29 +0000 (20:14 -0500)
committerPaul Brossier <piem@piem.org>
Sun, 8 Dec 2013 01:14:29 +0000 (20:14 -0500)
examples/parse_args.h

index 1f22799..3bc5c67 100644 (file)
@@ -61,11 +61,6 @@ usage (FILE * stream, int exit_code)
 {
   fprintf (stream, "usage: %s [ options ] \n", prog_name);
   fprintf (stream,
-      "       -h      --help             display this message\n"
-      "       -v      --verbose          be verbose\n"
-#ifdef PROG_HAS_JACK
-      "       -j      --jack             use Jack\n"
-#endif
       "       -i      --input            input type\n"
 #ifdef PROG_HAS_OUTPUT
       "       -o      --output           output type\n"
@@ -86,6 +81,11 @@ usage (FILE * stream, int exit_code)
 #ifdef PROG_HAS_OUTPUT
       "       -m      --mix-input        mix input signal with output signal\n"
 #endif
+#ifdef PROG_HAS_JACK
+      "       -j      --jack             use Jack\n"
+#endif
+      "       -v      --verbose          be verbose\n"
+      "       -h      --help             display this message\n"
       );
   exit (exit_code);
 }