commit 7ec32fe4944d4f7137cf2a23366324ffe0f10a70
Author:     Tom Schwindl <[email protected]>
AuthorDate: Mon Sep 26 09:24:15 2022 +0000
Commit:     Hiltjo Posthuma <[email protected]>
CommitDate: Sat Oct 1 13:20:40 2022 +0200

    dmenu: use die() to print the usage message

diff --git a/dmenu.c b/dmenu.c
index 818313a..7cf253b 100644
--- a/dmenu.c
+++ b/dmenu.c
@@ -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

Reply via email to