summaryrefslogtreecommitdiffstats
path: root/utils/newparser/handle_tags.c
diff options
context:
space:
mode:
Diffstat (limited to 'utils/newparser/handle_tags.c')
-rw-r--r--utils/newparser/handle_tags.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/utils/newparser/handle_tags.c b/utils/newparser/handle_tags.c
index 28c4548549..c7c1289183 100644
--- a/utils/newparser/handle_tags.c
+++ b/utils/newparser/handle_tags.c
@@ -132,10 +132,10 @@ int handle_tree(struct skin *skin, struct skin_element* tree, struct line *line)
if (element->tag && next->type == LINE &&
element->line == next->line)
{
- struct line *line = (struct line*)skin_alloc(sizeof(struct line));
- line->update_mode = 0;
- line->eat_line_ending = true;
- next->data = line;
+ struct line *newline = (struct line*)skin_alloc(sizeof(struct line));
+ newline->update_mode = 0;
+ newline->eat_line_ending = true;
+ next->data = newline;
}
}
else if (element->type == LINE && !element->data)