summary refs log tree commit diff
path: root/calmwm.c
diff options
context:
space:
mode:
authorokan <okan>2013-07-08 15:46:16 +0000
committerokan <okan>2013-07-08 15:46:16 +0000
commit7a7e5cd59254ab17f1f37affa868858160eca07a (patch)
tree561f01afc7597a290fe1735b0b53c9b9c459beeb /calmwm.c
parentfbcdce6be90df22da222192f4c54b170e945f36f (diff)
downloadcwm-7a7e5cd59254ab17f1f37affa868858160eca07a.tar.gz
cwm-7a7e5cd59254ab17f1f37affa868858160eca07a.tar.xz
cwm-7a7e5cd59254ab17f1f37affa868858160eca07a.zip
whitespace and style fixes; from Tiago Cunha and one from me.
Diffstat (limited to 'calmwm.c')
-rw-r--r--calmwm.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/calmwm.c b/calmwm.c
index 6a189d2..4a5f43d 100644
--- a/calmwm.c
+++ b/calmwm.c
@@ -102,7 +102,6 @@ main(int argc, char **argv)
 		conf_path = NULL;
 	}
 
-
 	conf_init(&Conf);
 	if (conf_path && (parse_config(conf_path, &Conf) == -1))
 		warnx("config file %s has errors, not loading", conf_path);
@@ -121,8 +120,7 @@ x_init(const char *dpyname)
 	int	i;
 
 	if ((X_Dpy = XOpenDisplay(dpyname)) == NULL)
-		errx(1, "unable to open display \"%s\"",
-		    XDisplayName(dpyname));
+		errx(1, "unable to open display \"%s\"", XDisplayName(dpyname));
 
 	XSetErrorHandler(x_wmerrorhandler);
 	XSelectInput(X_Dpy, DefaultRootWindow(X_Dpy), SubstructureRedirectMask);