diff options
author | David Robillard <d@drobilla.net> | 2024-11-22 20:32:00 -0500 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2024-11-24 13:21:47 -0500 |
commit | 918270bb6b8122bdc41ead0c304363b85a795b29 (patch) | |
tree | d2aa5cb99100d265fdf4d867a1de1c8d86f2dcab | |
parent | f6de9ad6953dad6ab805781fa9750917ddb3b56c (diff) | |
download | lilv-918270bb6b8122bdc41ead0c304363b85a795b29.tar.gz lilv-918270bb6b8122bdc41ead0c304363b85a795b29.tar.bz2 lilv-918270bb6b8122bdc41ead0c304363b85a795b29.zip |
Use conventional command-line help output formatting
-rw-r--r-- | tools/lv2bench.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/lv2bench.c b/tools/lv2bench.c index 461d088..b25f596 100644 --- a/tools/lv2bench.c +++ b/tools/lv2bench.c @@ -46,9 +46,9 @@ print_usage(void) printf("Usage: lv2bench [OPTIONS] [PLUGIN_URI]\n"); printf("\n"); printf(" -V, --version Display version information and exit\n"); - printf(" -b BLOCK_SIZE Specify block size, in audio frames.\n"); - printf(" -f, --full Full plottable output.\n"); - printf(" -h, --help Display this help and exit.\n"); + printf(" -b BLOCK_SIZE Specify block size, in audio frames\n"); + printf(" -f, --full Full plottable output\n"); + printf(" -h, --help Display this help and exit\n"); printf(" -n FRAMES Total number of audio frames to process\n"); } |