about summary refs log tree commit diff stats
path: root/tag.c
diff options
context:
space:
mode:
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();
 }