X-Git-Url: https://git.danieliu.xyz/?a=blobdiff_plain;f=draw.c;h=4ba5cd6dc1e4eaea3bafd41c076a7625c9c79acd;hb=85e6d5995663a48d402b96bebf00b319cca5d322;hp=0c920e5d1c063d3b63b0874d309e8cd2c1416b50;hpb=4688ad181da14be36e034918580ec0ce5968ffdb;p=dwm.git diff --git a/draw.c b/draw.c index 0c920e5..4ba5cd6 100644 --- a/draw.c +++ b/draw.c @@ -3,7 +3,6 @@ * See LICENSE file for license details. */ #include "dwm.h" - #include #include #include @@ -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(); }