cansequence: print_usage(): convert tabs to spaces in help text

pull/476/head
Marc Kleine-Budde 2023-11-29 17:37:31 +01:00
parent 0b0bce87c4
commit 92a99c33ad
1 changed files with 8 additions and 8 deletions

View File

@ -63,14 +63,14 @@ static void print_usage(char *prg)
"The main purpose of this program is to test the reliability of CAN links.\n" "The main purpose of this program is to test the reliability of CAN links.\n"
"\n" "\n"
"Options:\n" "Options:\n"
" -e, --extended send extended frame\n" " -e, --extended send extended frame\n"
" -i, --identifier=ID CAN Identifier (default = %u)\n" " -i, --identifier=ID CAN Identifier (default = %u)\n"
" --loop=COUNT send message COUNT times\n" " --loop=COUNT send message COUNT times\n"
" -p, --poll use poll(2) to wait for buffer space while sending\n" " -p, --poll use poll(2) to wait for buffer space while sending\n"
" -q, --quit <num> quit if <num> wrong sequences are encountered\n" " -q, --quit <num> quit if <num> wrong sequences are encountered\n"
" -r, --receive work as receiver\n" " -r, --receive work as receiver\n"
" -v, --verbose be verbose (twice to be even more verbose\n" " -v, --verbose be verbose (twice to be even more verbose\n"
" -h, --help this help\n", " -h, --help this help\n",
prg, CAN_ID_DEFAULT); prg, CAN_ID_DEFAULT);
} }