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:
Markus Armbruster 2010-01-16 09:22:48 +01:00
parent 6386583c1c
commit fe0ef18e2b
2 changed files with 2 additions and 2 deletions

View file

@ -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);
}
}