using anydot's memcpy-approach in drawtext, however it still looks awkward to me

This commit is contained in:
Anselm R Garbe 2008-06-01 17:41:15 +01:00
parent c26e22ccee
commit c8eaab21b6
1 changed files with 1 additions and 1 deletions

2
dwm.c
View File

@ -572,7 +572,7 @@ drawtext(const char *text, ulong col[ColLast], Bool invert) {
if(!len)
return;
if(len < olen)
strncpy(&buf[MAX(0, len - 3)], "...", len);
memcpy(&buf[MAX(0, len - 3)], "...", 3);
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);