summaryrefslogtreecommitdiff
path: root/lib/skin_parser
diff options
context:
space:
mode:
Diffstat (limited to 'lib/skin_parser')
-rw-r--r--lib/skin_parser/skin_debug.c2
-rw-r--r--lib/skin_parser/skin_parser.c2
-rw-r--r--lib/skin_parser/skin_parser.h2
3 files changed, 3 insertions, 3 deletions
diff --git a/lib/skin_parser/skin_debug.c b/lib/skin_parser/skin_debug.c
index 496268f3cf..00d09aea7e 100644
--- a/lib/skin_parser/skin_debug.c
+++ b/lib/skin_parser/skin_debug.c
@@ -157,7 +157,7 @@ void skin_debug_tree(struct skin_element* root)
157 157
158 break; 158 break;
159 159
160 case SUBLINES: 160 case LINE_ALTERNATOR:
161 printf("[ Alternator on line %d with %d sublines \n", current->line, 161 printf("[ Alternator on line %d with %d sublines \n", current->line,
162 current->children_count); 162 current->children_count);
163 debug_indent_level++; 163 debug_indent_level++;
diff --git a/lib/skin_parser/skin_parser.c b/lib/skin_parser/skin_parser.c
index 7a30e93fb5..2ce41c6d9a 100644
--- a/lib/skin_parser/skin_parser.c
+++ b/lib/skin_parser/skin_parser.c
@@ -325,7 +325,7 @@ static struct skin_element* skin_parse_sublines_optional(char** document,
325 int i; 325 int i;
326 326
327 retval = skin_alloc_element(); 327 retval = skin_alloc_element();
328 retval->type = SUBLINES; 328 retval->type = LINE_ALTERNATOR;
329 retval->next = NULL; 329 retval->next = NULL;
330 retval->line = skin_line; 330 retval->line = skin_line;
331 331
diff --git a/lib/skin_parser/skin_parser.h b/lib/skin_parser/skin_parser.h
index 95a22a6d53..d12624e727 100644
--- a/lib/skin_parser/skin_parser.h
+++ b/lib/skin_parser/skin_parser.h
@@ -38,7 +38,7 @@ enum skin_element_type
38 UNKNOWN = -1, 38 UNKNOWN = -1,
39 VIEWPORT, 39 VIEWPORT,
40 LINE, 40 LINE,
41 SUBLINES, 41 LINE_ALTERNATOR,
42 CONDITIONAL, 42 CONDITIONAL,
43 TAG, 43 TAG,
44 TEXT, 44 TEXT,