diff options
author | David Robillard <d@drobilla.net> | 2020-12-14 15:42:33 +0100 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2020-12-14 15:42:33 +0100 |
commit | 3b6afde09317b4d79ffb8a65cb49d525fc7b4101 (patch) | |
tree | 4333441600a2f15e9c07c1eac0297be7e261c7a6 /src/jalv_console.c | |
parent | 3e5f124c87d96f3cdc9d630ca2233f69eab33345 (diff) | |
download | jalv-3b6afde09317b4d79ffb8a65cb49d525fc7b4101.tar.gz jalv-3b6afde09317b4d79ffb8a65cb49d525fc7b4101.tar.bz2 jalv-3b6afde09317b4d79ffb8a65cb49d525fc7b4101.zip |
Remove Jack session support
Diffstat (limited to 'src/jalv_console.c')
-rw-r--r-- | src/jalv_console.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/src/jalv_console.c b/src/jalv_console.c index fb4c23f..f376333 100644 --- a/src/jalv_console.c +++ b/src/jalv_console.c @@ -50,7 +50,6 @@ print_usage(const char* name, bool error) 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 UUID UUID for Jack session restoration\n"); fprintf(os, " -x Exact JACK client name (exit if taken)\n"); return error ? 1 : 0; } @@ -86,12 +85,6 @@ jalv_init(int* argc, char*** argv, JalvOptions* opts) return 1; } opts->ui_uri = jalv_strdup((*argv)[a]); - } else if ((*argv)[a][1] == 'u') { - if (++a == *argc) { - fprintf(stderr, "Missing argument for -u\n"); - return 1; - } - opts->uuid = jalv_strdup((*argv)[a]); } else if ((*argv)[a][1] == 'l') { if (++a == *argc) { fprintf(stderr, "Missing argument for -l\n"); |