Reverted missing break in parameter validation

This commit is contained in:
Moritz Rosenthal 2016-09-22 16:13:09 +02:00
parent 247a65c7d5
commit 9573595b68
1 changed files with 1 additions and 0 deletions

View File

@ -1354,6 +1354,7 @@ static void wtp_handle_argv(int argc, char **argv) {
printf("Invalid -%c argument\n", optopt); printf("Invalid -%c argument\n", optopt);
exit(1); exit(1);
} }
break;
} }
case '?': { case '?': {