aboutsummaryrefslogtreecommitdiffstats
path: root/tag.c
diff options
context:
space:
mode:
authorAnselm R. Garbe <arg@suckless.org>2007-02-22 12:16:58 +0100
committerAnselm R. Garbe <arg@suckless.org>2007-02-22 12:16:58 +0100
commit89b7f1503e147dbd9260ecd379ca3e31ddfed6ea (patch)
treee5b19077273d371b80b041e6ff6d92429c27d97b /tag.c
parent5711609203602bd01b4b131572142bb171ffc560 (diff)
downloaddwm-89b7f1503e147dbd9260ecd379ca3e31ddfed6ea.tar.zst
oops
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 ccc2956..8f41d82 100644
--- a/tag.c
+++ b/tag.c
@@ -108,7 +108,7 @@ tag(const char *arg) {
if(!sel)
return;
for(i = 0; i < ntags; i++)
- sel->tags[i] = arg != NULL;
+ sel->tags[i] = arg == NULL;
i = arg ? atoi(arg) : 0;
if(i >= 0 && i < ntags)
sel->tags[i] = True;
@@ -146,7 +146,7 @@ view(const char *arg) {
int i;
for(i = 0; i < ntags; i++)
- seltag[i] = arg != NULL;
+ seltag[i] = arg == NULL;
i = arg ? atoi(arg) : 0;
if(i >= 0 && i < ntags)
seltag[i] = True;