Remove redundant "unknown option" error messages (#1441)

`getopt` already prints "unrecognized option"
This commit is contained in:
Sylvie
2024-08-05 10:04:53 -04:00
committed by GitHub
parent e4ffcf7153
commit d4231f9efa
4 changed files with 0 additions and 4 deletions

View File

@@ -281,7 +281,6 @@ int main(int argc, char *argv[]) {
// Unrecognized options
default:
fprintf(stderr, "FATAL: unknown option '%c'\n", ch);
printUsage();
exit(1);
}