Change force option to lower case.
No need for upper case to avoid parameters collision.
This commit is contained in:
parent
0a46876fd9
commit
743960f6e0
2 changed files with 4 additions and 4 deletions
4
slow.c
4
slow.c
|
|
@ -8,7 +8,7 @@
|
|||
char *argv0;
|
||||
|
||||
void usage() {
|
||||
fprintf(stderr, "usage: %s [-t usec] [-F]\n", argv0);
|
||||
fprintf(stderr, "usage: %s [-t usec] [-f]\n", argv0);
|
||||
exit(EXIT_FAILURE);
|
||||
}
|
||||
|
||||
|
|
@ -22,7 +22,7 @@ int main(int argc, char *argv[]) {
|
|||
case 't':
|
||||
useconds = atoi(EARGF(usage()));
|
||||
break;
|
||||
case 'F':
|
||||
case 'f':
|
||||
flush = 1;
|
||||
break;
|
||||
default:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue