JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
made fullscreen apps working fine in floating mode (there is no sane way to make...
[dwm.git] / draw.c
diff --git a/draw.c b/draw.c
index 0c920e5..4ba5cd6 100644 (file)
--- a/draw.c
+++ b/draw.c
@@ -3,7 +3,6 @@
  * See LICENSE file for license details.
  */
 #include "dwm.h"
-
 #include <stdio.h>
 #include <string.h>
 #include <X11/Xlocale.h>
@@ -99,7 +98,7 @@ drawall()
 {
        Client *c;
 
-       for(c = clients; c; c = getnext(c->next, tsel))
+       for(c = clients; c; c = getnext(c->next))
                drawtitle(c);
        drawstatus();
 }