From 5a2212fda6332980f351a8d8ca03f7d79d8c9712 Mon Sep 17 00:00:00 2001 From: Michael Drake Date: Wed, 3 Oct 2012 17:20:57 +0100 Subject: Variable already existed. --- render/box_construct.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/render/box_construct.c b/render/box_construct.c index 7732f4445..23896717f 100644 --- a/render/box_construct.c +++ b/render/box_construct.c @@ -1283,7 +1283,7 @@ bool box_construct_text(struct box_construct_ctx *ctx) text[text_len] = '\0'; /* TODO: Handle tabs properly */ - for (int i = 0; i < text_len; i++) + for (i = 0; i < text_len; i++) if (text[i] == '\t') text[i] = ' '; -- cgit v1.2.3