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.c8
-rw-r--r--lib/skin_parser/skin_parser.c2
2 files changed, 5 insertions, 5 deletions
diff --git a/lib/skin_parser/skin_debug.c b/lib/skin_parser/skin_debug.c
index a2042744b9..43cd746253 100644
--- a/lib/skin_parser/skin_debug.c
+++ b/lib/skin_parser/skin_debug.c
@@ -34,10 +34,10 @@ extern char* skin_start;
34extern char* skin_buffer; 34extern char* skin_buffer;
35 35
36/* Global error variables */ 36/* Global error variables */
37int error_line; 37static int error_line;
38int error_col; 38static int error_col;
39const char *error_line_start; 39static const char *error_line_start;
40char* error_message; 40static char* error_message;
41 41
42 42
43static inline struct skin_element* 43static inline struct skin_element*
diff --git a/lib/skin_parser/skin_parser.c b/lib/skin_parser/skin_parser.c
index e47054b06a..1d784f918a 100644
--- a/lib/skin_parser/skin_parser.c
+++ b/lib/skin_parser/skin_parser.c
@@ -35,7 +35,7 @@
35/* Global variables for the parser */ 35/* Global variables for the parser */
36int skin_line = 0; 36int skin_line = 0;
37char* skin_start = 0; 37char* skin_start = 0;
38int viewport_line = 0; 38static int viewport_line = 0;
39 39
40#ifdef ROCKBOX 40#ifdef ROCKBOX
41static skin_callback callback = NULL; 41static skin_callback callback = NULL;