Pass program name as argument to usage().

This commit is contained in:
Murilo Pereira 2011-06-12 21:39:11 -03:00
parent 0325778de4
commit 561b4ba599

View File

@ -21,7 +21,7 @@ void draw_greeting() {
mvprintw(15, 19, "Press the space bar to play or q to quit."); mvprintw(15, 19, "Press the space bar to play or q to quit.");
} }
void usage() { void usage(const char *program_name) {
printf("usage: %s [-v|--version] [-h|--help] [-p|--passes=NUMBER]\n", program_name); printf("usage: %s [-v|--version] [-h|--help] [-p|--passes=NUMBER]\n", program_name);
printf(" -v, --version Show version\n"); printf(" -v, --version Show version\n");
printf(" -h, --help Show this message\n"); printf(" -h, --help Show this message\n");
@ -64,7 +64,7 @@ int main(int argc, char *argv[]) {
break; break;
case 'h': case 'h':
default: default:
usage(); usage(program_name);
exit(0); exit(0);
} }
} }