aboutsummaryrefslogtreecommitdiffstats
path: root/tag.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 /tag.c
parent6651dd7fd9e8e95cfc6c472f1adfeff41735d798 (diff)
downloaddwm-5983c00b9508d48331b2c57f2c88ea09a8feb291.tar.gz
do* has no Arg arument anymore (never called directly)
Diffstat (limited to 'tag.c')
-rw-r--r--tag.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tag.c b/tag.c
index 70a1553..798fd0a 100644
--- a/tag.c
+++ b/tag.c
@@ -117,7 +117,7 @@ tag(Arg *arg) {
sel->tags[i] = False;
sel->tags[arg->i] = True;
sel->weight = arg->i;
- arrange(NULL);
+ arrange();
}
void
@@ -131,5 +131,5 @@ toggletag(Arg *arg) {
if(i == ntags)
sel->tags[arg->i] = True;
sel->weight = (i == ntags) ? arg->i : i;
- arrange(NULL);
+ arrange();
}