mirror of
https://github.com/onyx-and-iris/vmrcli.git
synced 2024-11-15 17:40:56 +00:00
log fatal exit points
This commit is contained in:
parent
8d9e70b79a
commit
ad91a7f4e6
@ -126,12 +126,12 @@ int main(int argc, char *argv[])
|
|||||||
vflag = true;
|
vflag = true;
|
||||||
break;
|
break;
|
||||||
case '?':
|
case '?':
|
||||||
log_warn("unknown option -- '%c'\n"
|
log_fatal("unknown option -- '%c'\n"
|
||||||
"Try .\\vmrcli.exe -h for more information.",
|
"Try .\\vmrcli.exe -h for more information.",
|
||||||
optopt);
|
optopt);
|
||||||
exit(EXIT_FAILURE);
|
exit(EXIT_FAILURE);
|
||||||
case ':':
|
case ':':
|
||||||
log_warn("missing argument for option -- '%c'\n"
|
log_fatal("missing argument for option -- '%c'\n"
|
||||||
"Try .\\vmrcli.exe -h for more information.",
|
"Try .\\vmrcli.exe -h for more information.",
|
||||||
optopt);
|
optopt);
|
||||||
exit(EXIT_FAILURE);
|
exit(EXIT_FAILURE);
|
||||||
|
Loading…
Reference in New Issue
Block a user