Fix -w option
This commit is contained in:
parent
43388c3c3e
commit
0984caca2a
1 changed files with 1 additions and 1 deletions
2
main.cpp
2
main.cpp
|
@ -74,7 +74,7 @@ public:
|
|||
{0, 0, 0, 0}
|
||||
};
|
||||
int option_index = 0;
|
||||
int c = getopt_long(argc, argv, "h:n:m:t:p:d:o:i:k:", long_options, &option_index);
|
||||
int c = getopt_long(argc, argv, "h:n:m:t:p:d:o:i:k:w:", long_options, &option_index);
|
||||
if (c == -1) break;
|
||||
switch (c) {
|
||||
case 'h': {
|
||||
|
|
Loading…
Reference in a new issue