updated the for-loop with Gottox' proposal

This commit is contained in:
arg@suckless.org 2008-06-09 10:05:40 +02:00
parent d26b60b43e
commit 077d3e435b
1 changed files with 1 additions and 1 deletions

2
dwm.c
View File

@ -570,7 +570,7 @@ drawtext(const char *text, ulong col[ColLast], Bool invert) {
if(!len)
return;
if(len < olen)
for(i = len; i >= MAX(0, len - 3); buf[i--] = '.');
for(i = len; i && i > len - 3; buf[--i] = '.');
XSetForeground(dpy, dc.gc, col[invert ? ColBG : ColFG]);
if(dc.font.set)
XmbDrawString(dpy, dc.drawable, dc.font.set, dc.gc, x, y, buf, len);