fix - dwm - dynamic window manager HTML git clone https://git.parazyd.org/dwm DIR Log DIR Files DIR Refs DIR README DIR LICENSE --- DIR commit 838a1ff950eb42e4137cfd7039a0e78227b2ef70 DIR parent e1315fd40cf7f3df911e1b4f6876c47ce1feb61c HTML Author: Anselm R. Garbe <arg@10kloc.org> Date: Tue, 5 Sep 2006 18:43:15 +0200 fix Diffstat: M view.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- DIR 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));