removed the i = textnw... as remarked by Martin Hurton
authorAnselm R Garbe <garbeam@gmail.com>
Mon, 18 Aug 2008 10:16:36 +0100
changeset 1331 1ee96809e6f2
parent 1330 06677766e7aa
child 1332 b304593057fb
removed the i = textnw... as remarked by Martin Hurton
dwm.c
--- a/dwm.c	Mon Aug 18 10:14:51 2008 +0100
+++ b/dwm.c	Mon Aug 18 10:16:36 2008 +0100
@@ -581,7 +581,7 @@
 	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);