From 4d3ca48ea49f5885f279de9c2bdd236309d439bf Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sat, 18 Feb 2017 18:06:22 +0100 Subject: Sort options in man pages and help output --- src/jalv_console.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'src/jalv_console.c') diff --git a/src/jalv_console.c b/src/jalv_console.c index e0e114b..70fe5aa 100644 --- a/src/jalv_console.c +++ b/src/jalv_console.c @@ -35,16 +35,16 @@ print_usage(const char* name, bool error) FILE* const os = error ? stderr : stdout; fprintf(os, "Usage: %s [OPTION...] PLUGIN_URI\n", name); fprintf(os, "Run an LV2 plugin as a Jack application.\n"); - fprintf(os, " -h Display this help and exit\n"); - fprintf(os, " -p Print control output changes to stdout\n"); + fprintf(os, " -b SIZE Buffer size for plugin <=> UI communication\n"); fprintf(os, " -c SYM=VAL Set control value (e.g. \"vol=1.4\")\n"); - fprintf(os, " -u UUID UUID for Jack session restoration\n"); - fprintf(os, " -l DIR Load state from save directory\n"); fprintf(os, " -d Dump plugin <=> UI communication\n"); + fprintf(os, " -h Display this help and exit\n"); + fprintf(os, " -l DIR Load state from save directory\n"); + fprintf(os, " -n NAME JACK client name\n"); + fprintf(os, " -p Print control output changes to stdout\n"); fprintf(os, " -s Show plugin UI if possible\n"); fprintf(os, " -t Print trace messages from plugin\n"); - fprintf(os, " -b SIZE Buffer size for plugin <=> UI communication\n"); - fprintf(os, " -n NAME JACK client name\n"); + fprintf(os, " -u UUID UUID for Jack session restoration\n"); fprintf(os, " -x Exact JACK client name (exit if taken)\n"); return error ? 1 : 0; } -- cgit v1.2.1