diff options
author | arg@10ksloc.org <unknown> | 2006-08-01 11:49:19 +0200 |
---|---|---|
committer | arg@10ksloc.org <unknown> | 2006-08-01 11:49:19 +0200 |
commit | 937cabfa0aad7eef6d25e9d142a478163de200c5 (patch) | |
tree | 1f0751ad821d2fe283513781d0e7be003a1472d1 /draw.c | |
parent | deba5069e51219982bc123720935b704c14a9444 (diff) | |
download | dwm-937cabfa0aad7eef6d25e9d142a478163de200c5.tar.gz |
committed a patch which fixes the hints of Jukka
Diffstat (limited to 'draw.c')
-rw-r--r-- | draw.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/draw.c b/draw.c index 0c920e5..4f8594c 100644 --- a/draw.c +++ b/draw.c @@ -99,7 +99,7 @@ drawall() { Client *c; - for(c = clients; c; c = getnext(c->next, tsel)) + for(c = clients; c; c = getnext(c->next)) drawtitle(c); drawstatus(); } |