diff options
author | David Robillard <d@drobilla.net> | 2022-05-27 14:05:47 -0400 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2022-05-27 14:05:47 -0400 |
commit | 3829ae6b41c88150af33da03592bfaf092af87be (patch) | |
tree | 160b46db96d31e3341a8c3bd20084bf719812690 /src | |
parent | 569a1e046ab959eda50543d4ccfdc94a9dfe62f0 (diff) | |
download | jalv-3829ae6b41c88150af33da03592bfaf092af87be.tar.gz jalv-3829ae6b41c88150af33da03592bfaf092af87be.tar.bz2 jalv-3829ae6b41c88150af33da03592bfaf092af87be.zip |
Sort options in help output by case-insensitive flag
Diffstat (limited to 'src')
-rw-r--r-- | src/jalv_console.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/jalv_console.c b/src/jalv_console.c index 2e43495..1ef9283 100644 --- a/src/jalv_console.c +++ b/src/jalv_console.c @@ -44,13 +44,13 @@ print_usage(const char* name, bool error) 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, " -d Dump plugin <=> UI communication\n"); - fprintf(os, " -U URI Load the UI with the given URI\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, " -U URI Load the UI with the given URI\n"); fprintf(os, " -x Exact JACK client name (exit if taken)\n"); return error ? 1 : 0; } |