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);