Make empire and files not print usage on bad option
Point to -h instead. This is consistent with the other programs.
This commit is contained in:
parent
6386583c1c
commit
fe0ef18e2b
2 changed files with 2 additions and 2 deletions
|
@ -107,7 +107,7 @@ main(int argc, char **argv)
|
|||
printf("%s\n\n%s", version, legal);
|
||||
exit(0);
|
||||
default:
|
||||
print_usage(argv[0]);
|
||||
fprintf(stderr, "Try -h for help.\n");
|
||||
exit(1);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue