Use die() in usage()
This commit is contained in:
parent
12ebbc5ded
commit
89d7bbb9c3
1 changed files with 2 additions and 3 deletions
5
quark.c
5
quark.c
|
@ -641,9 +641,8 @@ getusock(char *udsname)
|
|||
static void
|
||||
usage(void)
|
||||
{
|
||||
fprintf(stderr, "usage: %s [-v] [[[-h host] [-p port]] | "
|
||||
"[-U udsocket]] [-d dir] [-u user] [-g group]\n", argv0);
|
||||
exit(1);
|
||||
die("usage: %s [-v] [[[-h host] [-p port]] | [-U udsocket]] "
|
||||
"[-d dir] [-u user] [-g group]\n", argv0);
|
||||
}
|
||||
|
||||
int
|
||||
|
|
Loading…
Reference in a new issue