From 937cabfa0aad7eef6d25e9d142a478163de200c5 Mon Sep 17 00:00:00 2001 From: "arg@10ksloc.org" Date: Tue, 1 Aug 2006 11:49:19 +0200 Subject: committed a patch which fixes the hints of Jukka --- tag.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'tag.c') diff --git a/tag.c b/tag.c index 67e2498..13e22af 100644 --- a/tag.c +++ b/tag.c @@ -63,7 +63,7 @@ dofloat(Arg *arg) ban(c); } if(sel && !sel->tags[tsel]) { - if((sel = getnext(clients, tsel))) { + if((sel = getnext(clients))) { higher(sel); focus(sel); } @@ -126,7 +126,7 @@ dotile(Arg *arg) ban(c); } if(!sel || (sel && !sel->tags[tsel])) { - if((sel = getnext(clients, tsel))) { + if((sel = getnext(clients))) { higher(sel); focus(sel); } @@ -135,9 +135,9 @@ dotile(Arg *arg) } Client * -getnext(Client *c, unsigned int t) +getnext(Client *c) { - for(; c && !c->tags[t]; c = c->next); + for(; c && !c->tags[tsel]; c = c->next); return c; } -- cgit v1.2.3-54-g00ecf