dwm

my fork of dwm
Index Commits Files Refs README LICENSE
commit 838a1ff950eb42e4137cfd7039a0e78227b2ef70
parent e1315fd40cf7f3df911e1b4f6876c47ce1feb61c
Author: Anselm R. Garbe <arg@10kloc.org>
Date:   Tue,  5 Sep 2006 18:43:15 +0200

fix
Diffstat:
Mview.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/view.c b/view.c
@@ -318,7 +318,7 @@ zoom(Arg *arg)
         return;
 
     /* this is somewhat tricky, it asserts to only zoom tiled clients */
-    for(c = clients; c && c->isfloat; c = getnext(c->next));
+    for(c = getnext(clients); c && c->isfloat; c = getnext(c->next));
     if(c) {
         if(c == sel)
             for(c = getnext(c->next); c && c->isfloat; c = getnext(c->next));