about summary refs log tree commit diff stats
path: root/draw.c
diff options
context:
space:
mode:
authorarg@10ksloc.org <unknown>2006-08-01 11:49:19 +0200
committerarg@10ksloc.org <unknown>2006-08-01 11:49:19 +0200
commit937cabfa0aad7eef6d25e9d142a478163de200c5 (patch)
tree1f0751ad821d2fe283513781d0e7be003a1472d1 /draw.c
parentdeba5069e51219982bc123720935b704c14a9444 (diff)
downloaddwm-937cabfa0aad7eef6d25e9d142a478163de200c5.tar.gz
committed a patch which fixes the hints of Jukka
Diffstat (limited to 'draw.c')
-rw-r--r--draw.c2
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();
 }
d='n146' href='#n146'>146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221