aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--dmenu.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/dmenu.c b/dmenu.c
index 1206e95..895bdc5 100644
--- a/dmenu.c
+++ b/dmenu.c
@@ -1,7 +1,6 @@
1/* See LICENSE file for copyright and license details. */ 1/* See LICENSE file for copyright and license details. */
2#define _BSD_SOURCE 2#define _BSD_SOURCE
3#include <ctype.h> 3#include <ctype.h>
4#include <locale.h>
5#include <stdarg.h> 4#include <stdarg.h>
6#include <stdio.h> 5#include <stdio.h>
7#include <stdlib.h> 6#include <stdlib.h>
@@ -719,7 +718,7 @@ main(int argc, char *argv[]) {
719 else 718 else
720 eprint("usage: dmenu [-i] [-b] [-fn <font>] [-nb <color>] [-nf <color>]\n" 719 eprint("usage: dmenu [-i] [-b] [-fn <font>] [-nb <color>] [-nf <color>]\n"
721 " [-p <prompt>] [-sb <color>] [-sf <color>] [-v]\n"); 720 " [-p <prompt>] [-sb <color>] [-sf <color>] [-v]\n");
722 if(!setlocale(LC_CTYPE, "") || !XSupportsLocale()) 721 if(!XSupportsLocale())
723 fprintf(stderr, "warning: no locale support\n"); 722 fprintf(stderr, "warning: no locale support\n");
724 if(!(dpy = XOpenDisplay(0))) 723 if(!(dpy = XOpenDisplay(0)))
725 eprint("dmenu: cannot open display\n"); 724 eprint("dmenu: cannot open display\n");