X-Git-Url: https://git.danieliu.xyz/?a=blobdiff_plain;f=dmenu.c;h=a799f14300e7ad479c682c5c710bccd21ed99a11;hb=b95e61c9b7310deb452a5dfe404cc1a8f9930117;hp=a9c0f60f048164fa437619070316f4853f9ecacd;hpb=cf7e4c15a97fa4e0921985d8e31bf9d6d4414b9a;p=dmenu.git diff --git a/dmenu.c b/dmenu.c index a9c0f60..a799f14 100644 --- a/dmenu.c +++ b/dmenu.c @@ -226,7 +226,7 @@ drawtext(const char *text, unsigned long col[ColLast]) { y = dc.y + (dc.h / 2) - (h / 2) + dc.font.ascent; x = dc.x + (h / 2); /* shorten text if necessary */ - for(len = MIN(olen, sizeof buf); len && (i = textnw(buf, len)) > dc.w - h; len--); + for(len = MIN(olen, sizeof buf); len && textnw(buf, len) > dc.w - h; len--); if(!len) return; memcpy(buf, text, len);