removed the i = textnw... as remarked by Martin Hurton 087a55f8
Anselm R Garbe · 2008-08-18 10:16 1 file(s) · +1 −1
dwm.c +1 −1
581 581
	y = dc.y + (dc.h / 2) - (h / 2) + dc.font.ascent;
582 582
	x = dc.x + (h / 2);
583 583
	/* shorten text if necessary */
584 -
	for(len = MIN(olen, sizeof buf); len && (i = textnw(buf, len)) > dc.w - h; len--);
584 +
	for(len = MIN(olen, sizeof buf); len && textnw(buf, len) > dc.w - h; len--);
585 585
	if(!len)
586 586
		return;
587 587
	memcpy(buf, text, len);