aboutsummaryrefslogtreecommitdiff
path: root/view.c
diff options
context:
space:
mode:
authorAnselm R. Garbe <arg@10kloc.org>2006-09-05 18:43:15 +0200
committerAnselm R. Garbe <arg@10kloc.org>2006-09-05 18:43:15 +0200
commit838a1ff950eb42e4137cfd7039a0e78227b2ef70 (patch)
treea31b0d21df3a2a07ee8187eed55bdec27eb91d10 /view.c
parente1315fd40cf7f3df911e1b4f6876c47ce1feb61c (diff)
fix
Diffstat (limited to 'view.c')
-rw-r--r--view.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/view.c b/view.c
index b76b47e..561d4ef 100644
--- 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));