mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-03-03 01:40:17 -05:00
main: let getopt_long() print error message
This commit is contained in:
parent
58a7ab76ba
commit
ea1d072f52
1 changed files with 1 additions and 6 deletions
7
main.c
7
main.c
|
|
@ -109,7 +109,7 @@ main(int argc, char *const *argv)
|
||||||
const char *conf_server_socket_path = NULL;
|
const char *conf_server_socket_path = NULL;
|
||||||
|
|
||||||
while (true) {
|
while (true) {
|
||||||
int c = getopt_long(argc, argv, ":c:tf:g:s::vh", longopts, NULL);
|
int c = getopt_long(argc, argv, "c:tf:g:s::vh", longopts, NULL);
|
||||||
if (c == -1)
|
if (c == -1)
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
|
@ -170,12 +170,7 @@ main(int argc, char *const *argv)
|
||||||
print_usage(prog_name);
|
print_usage(prog_name);
|
||||||
return EXIT_SUCCESS;
|
return EXIT_SUCCESS;
|
||||||
|
|
||||||
case ':':
|
|
||||||
fprintf(stderr, "error: -%c: missing required argument\n", optopt);
|
|
||||||
return EXIT_FAILURE;
|
|
||||||
|
|
||||||
case '?':
|
case '?':
|
||||||
fprintf(stderr, "error: -%c: invalid option\n", optopt);
|
|
||||||
return EXIT_FAILURE;
|
return EXIT_FAILURE;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue