Skip to content
Snippets Groups Projects
Commit 6f01abf5 authored by Valentin Spreckels's avatar Valentin Spreckels Committed by Jo-Philipp Wich
Browse files

fritz_tffs_read: fix parsing of size argument


The parameter specification missed that -s takes an argument.

Signed-off-by: default avatarValentin Spreckels <Valentin.Spreckels@Informatik.Uni-Oldenburg.DE>
parent 5dc76a42
No related branches found
No related tags found
No related merge requests found
...@@ -259,7 +259,7 @@ static void parse_options(int argc, char *argv[]) ...@@ -259,7 +259,7 @@ static void parse_options(int argc, char *argv[])
{ {
int c; int c;
c = getopt(argc, argv, "abhi:ln:s"); c = getopt(argc, argv, "abhi:ln:s:");
if (c == -1) if (c == -1)
break; break;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment