JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
do* has no Arg arument anymore (never called directly)
[dwm.git] / tag.c
diff --git a/tag.c b/tag.c
index 70a1553..798fd0a 100644 (file)
--- 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();
 }