summaryrefslogtreecommitdiff
path: root/apps/gui/skin_engine/skin_parser.c
diff options
context:
space:
mode:
authorBertrik Sikken <bertrik@sikken.nl>2010-07-30 23:47:49 +0000
committerBertrik Sikken <bertrik@sikken.nl>2010-07-30 23:47:49 +0000
commit57933f2bc6cd404874e5772f35d9c10861d1f52e (patch)
tree63eb13fc550707e19f8624d5d2693111ee1f4c4a /apps/gui/skin_engine/skin_parser.c
parentd73c81f912f51abcfb034ed3e563fd4b39db5854 (diff)
downloadrockbox-57933f2bc6cd404874e5772f35d9c10861d1f52e.tar.gz
rockbox-57933f2bc6cd404874e5772f35d9c10861d1f52e.zip
Make some global function/variables local (by making them static)
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@27631 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/gui/skin_engine/skin_parser.c')
-rw-r--r--apps/gui/skin_engine/skin_parser.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/gui/skin_engine/skin_parser.c b/apps/gui/skin_engine/skin_parser.c
index d81ccf62b3..ed7771529e 100644
--- a/apps/gui/skin_engine/skin_parser.c
+++ b/apps/gui/skin_engine/skin_parser.c
@@ -90,7 +90,7 @@ static enum screen_type curr_screen;
90static struct skin_element *curr_viewport_element; 90static struct skin_element *curr_viewport_element;
91static struct skin_viewport *curr_vp; 91static struct skin_viewport *curr_vp;
92 92
93struct line *curr_line; 93static struct line *curr_line;
94 94
95static int follow_lang_direction = 0; 95static int follow_lang_direction = 0;
96 96
@@ -1173,7 +1173,7 @@ static int convert_viewport(struct wps_data *data, struct skin_element* element)
1173 1173
1174} 1174}
1175 1175
1176int skin_element_callback(struct skin_element* element, void* data) 1176static int skin_element_callback(struct skin_element* element, void* data)
1177{ 1177{
1178 struct wps_data *wps_data = (struct wps_data *)data; 1178 struct wps_data *wps_data = (struct wps_data *)data;
1179 struct wps_token *token; 1179 struct wps_token *token;