From 3e7f0d7dcea5778b6a2b2174576ee8daccc7df5b Mon Sep 17 00:00:00 2001 From: Anselm R Garbe Date: Mon, 18 Aug 2008 10:17:15 +0100 Subject: [PATCH] removed the i = textnw... as remarked by Martin Hurton --- dmenubar/dmenu.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dmenubar/dmenu.c b/dmenubar/dmenu.c index a9c0f60..a799f14 100644 --- a/dmenubar/dmenu.c +++ b/dmenubar/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);