~kris/suckless

tabbed

e65146d2918e0072fc09b3dfb06785e170787164 — Ivan Vetrov 10 months ago d6e4aaf
cleanup(): fix for loop bounds
1 files changed, 1 insertions(+), 1 deletions(-)

M tabbed.c
M tabbed.c => tabbed.c +1 -1
@@ 214,7 214,7 @@ cleanup(void)
{
	int i;

	for (i = 0; i < nclients; i++) {
	for (i = nclients - 1; i >= 0; i--) {
		focus(i);
		killclient(NULL);
		XReparentWindow(dpy, clients[i]->win, root, 0, 0);