aboutsummaryrefslogtreecommitdiff
path: root/main.c
diff options
context:
space:
mode:
authorAnselm R. Garbe <garbeam@wmii.de>2006-07-15 18:11:14 +0200
committerAnselm R. Garbe <garbeam@wmii.de>2006-07-15 18:11:14 +0200
commitf60c597d653bd7eab6c620fc53d732ca75f6a880 (patch)
treed7cc81bf3fbcea4b5c68b6d568fcb3fae6d5588b /main.c
parentc09bf8da071e05e2c1d714f0d31d41fe944bc11b (diff)
changing XFlush into XSync
Diffstat (limited to 'main.c')
-rw-r--r--main.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/main.c b/main.c
index 935d860..5cf2738 100644
--- a/main.c
+++ b/main.c
@@ -204,12 +204,12 @@ main(int argc, char *argv[])
XSetErrorHandler(xerrorstart);
/* this causes an error if some other WM is running */
XSelectInput(dpy, root, SubstructureRedirectMask);
- XFlush(dpy);
+ XSync(dpy, False);
if(otherwm)
eprint("dwm: another window manager is already running\n");
- XSetErrorHandler(0);
+ XSetErrorHandler(NULL);
xerrorxlib = XSetErrorHandler(xerror);
/* init atoms */