aboutsummaryrefslogtreecommitdiffstats
path: root/client.c
diff options
context:
space:
mode:
authorAnselm R. Garbe <arg@10kloc.org>2006-10-06 13:06:37 +0200
committerAnselm R. Garbe <arg@10kloc.org>2006-10-06 13:06:37 +0200
commit5983c00b9508d48331b2c57f2c88ea09a8feb291 (patch)
tree73898ee9823dae41f7b481a533b541651d56e226 /client.c
parent6651dd7fd9e8e95cfc6c472f1adfeff41735d798 (diff)
downloaddwm-5983c00b9508d48331b2c57f2c88ea09a8feb291.tar.zst
do* has no Arg arument anymore (never called directly)1.9
Diffstat (limited to 'client.c')
-rw-r--r--client.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/client.c b/client.c
index 60f1cbe..c65a42b 100644
--- a/client.c
+++ b/client.c
@@ -246,7 +246,7 @@ manage(Window w, XWindowAttributes *wa) {
XMapWindow(dpy, c->twin);
if(isvisible(c))
focus(c);
- arrange(NULL);
+ arrange();
}
void
@@ -393,5 +393,5 @@ unmanage(Client *c) {
XSync(dpy, False);
XSetErrorHandler(xerror);
XUngrabServer(dpy);
- arrange(NULL);
+ arrange();
}