Skip to content

Commit

Permalink
aseqsend: Update the help texts for long options
Browse files Browse the repository at this point in the history
The help text was forgotten to be updated for the new long options.
Updated now.

Signed-off-by: Takashi Iwai <[email protected]>
  • Loading branch information
tiwai committed Jul 23, 2024
1 parent d480eac commit df68ec3
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions seq/aseqsend/aseqsend.c
Original file line number Diff line number Diff line change
Expand Up @@ -72,13 +72,14 @@ static void usage(void)
{
printf(
"\nUsage: aseqsend -p target-port -s file-name|\"hex encoded bytes\"\n\n"
" -h this help\n"
" -V print current version\n"
" -v verbose\n"
" -l list all sequencer ports\n"
" -p target port by number or name\n"
" -s send binary data from given file name\n"
" -i interval between SysEx messages in miliseconds\n\n");
" -h,--help this help\n"
" -V,--version print current version\n"
" -v,--verbose verbose mode\n"
" -l,--list list all sequencer ports\n"
" -p,--port=c:p target port by number or name\n"
" -s,--file=name send binary data from given file name\n"
" -i,--interval=v interval between SysEx messages in miliseconds\n"
" -u,--ump=version MIDI version: 0=legacy (default), 1=MIDI1, 2=MIDI2\n\n");
}

static void version(void)
Expand Down

0 comments on commit df68ec3

Please sign in to comment.