Browse Source

dmenu: use die() to print the usage message

master
Tom Schwindl 3 years ago
committed by Hiltjo Posthuma
parent
commit
7ec32fe494
1 changed files with 2 additions and 3 deletions
  1. +2
    -3
      dmenu.c

+ 2
- 3
dmenu.c View File

@ -710,9 +710,8 @@ setup(void)
static void
usage(void)
{
fputs("usage: dmenu [-bfiv] [-l lines] [-p prompt] [-fn font] [-m monitor]\n"
" [-nb color] [-nf color] [-sb color] [-sf color] [-w windowid]\n", stderr);
exit(1);
die("usage: dmenu [-bfiv] [-l lines] [-p prompt] [-fn font] [-m monitor]\n"
" [-nb color] [-nf color] [-sb color] [-sf color] [-w windowid]");
}
int


Loading…
Cancel
Save