aewl

changeset 428:16f8f05f960e

fix
author Anselm R. Garbe <arg@10kloc.org>
date Tue, 05 Sep 2006 18:43:15 +0200
parents e58cd202c4e9
children a31de8605f72
files view.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line diff
     1.1 --- a/view.c	Tue Sep 05 18:04:22 2006 +0200
     1.2 +++ b/view.c	Tue Sep 05 18:43:15 2006 +0200
     1.3 @@ -318,7 +318,7 @@
     1.4  		return;
     1.5  
     1.6  	/* this is somewhat tricky, it asserts to only zoom tiled clients */
     1.7 -	for(c = clients; c && c->isfloat; c = getnext(c->next));
     1.8 +	for(c = getnext(clients); c && c->isfloat; c = getnext(c->next));
     1.9  	if(c) {
    1.10  		if(c == sel)
    1.11  			for(c = getnext(c->next); c && c->isfloat; c = getnext(c->next));