about summary refs log tree commit diff stats
path: root/main.c
diff options
context:
space:
mode:
authorAnselm R. Garbe <arg@suckless.org>2007-02-19 21:17:54 +0100
committerAnselm R. Garbe <arg@suckless.org>2007-02-19 21:17:54 +0100
commit6bc4556ebd7f48f52f9a446e53d1705d8fd79b27 (patch)
tree94831a12c42294e0ed3dcc9cfd295066ab19506a /main.c
parent879241c05cbf959304a2dc4f2fabcdcecaea5092 (diff)
downloaddwm-6bc4556ebd7f48f52f9a446e53d1705d8fd79b27.tar.gz
using eprint instead of fputs
Diffstat (limited to 'main.c')
-rw-r--r--main.c9
1 files changed, 3 insertions, 6 deletions
diff --git a/main.c b/main.c
index 8ecf9fa..6f8914c 100644
--- a/main.c
+++ b/main.c
@@ -381,15 +381,12 @@ main(int argc, char *argv[]) {
 	fd_set rd;
 	XEvent ev;
 
-	if(argc == 2 && !strncmp("-v", argv[1], 3)) {
-		fputs("dwm-"VERSION", (C)opyright MMVI-MMVII Anselm R. Garbe\n", stdout);
-		exit(EXIT_SUCCESS);
-	}
+	if(argc == 2 && !strncmp("-v", argv[1], 3))
+		eprint("dwm-"VERSION", (C)opyright MMVI-MMVII Anselm R. Garbe\n");
 	else if(argc != 1)
 		eprint("usage: dwm [-v]\n");
 	setlocale(LC_CTYPE, "");
-	dpy = XOpenDisplay(0);
-	if(!dpy)
+	if(!(dpy = XOpenDisplay(0)))
 		eprint("dwm: cannot open display\n");
 	xfd = ConnectionNumber(dpy);
 	screen = DefaultScreen(dpy);