fritz_tffs_read: fix parsing of size argument
The parameter specification missed that -s takes an argument. Signed-off-by: Valentin Spreckels <Valentin.Spreckels@Informatik.Uni-Oldenburg.DE>
This commit is contained in:
parent
5dc76a4258
commit
6f01abf5de
1 changed files with 1 additions and 1 deletions
|
@ -259,7 +259,7 @@ static void parse_options(int argc, char *argv[])
|
|||
{
|
||||
int c;
|
||||
|
||||
c = getopt(argc, argv, "abhi:ln:s");
|
||||
c = getopt(argc, argv, "abhi:ln:s:");
|
||||
if (c == -1)
|
||||
break;
|
||||
|
||||
|
|
Loading…
Reference in a new issue