From 9c58356e88798bdfa4e883c6c5bf26b6eb04ad2b Mon Sep 17 00:00:00 2001 From: Bertrik Sikken Date: Sat, 16 Oct 2010 21:26:23 +0000 Subject: Make two local functions static in skin_tokens.c git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28290 a1c6a512-1295-4272-9138-f99709370657 --- apps/gui/skin_engine/skin_tokens.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'apps/gui/skin_engine/skin_tokens.c') diff --git a/apps/gui/skin_engine/skin_tokens.c b/apps/gui/skin_engine/skin_tokens.c index 78d141e743..0af2e9dd6b 100644 --- a/apps/gui/skin_engine/skin_tokens.c +++ b/apps/gui/skin_engine/skin_tokens.c @@ -555,7 +555,7 @@ static struct mp3entry* get_mp3entry_from_offset(int offset, char **filename) } #ifdef HAVE_LCD_CHARCELLS -void format_player_progress(struct gui_wps *gwps) +static void format_player_progress(struct gui_wps *gwps) { struct wps_state *state = skin_get_global_state(); struct screen *display = gwps->display; @@ -591,7 +591,7 @@ void format_player_progress(struct gui_wps *gwps) display->define_pattern(gwps->data->wps_progress_pat[0], progress_pattern); } -void format_player_fullbar(struct gui_wps *gwps, char* buf, int buf_size) +static void format_player_fullbar(struct gui_wps *gwps, char* buf, int buf_size) { static const unsigned char numbers[10][4] = { {0x0e, 0x0a, 0x0a, 0x0e}, /* 0 */ @@ -603,7 +603,7 @@ void format_player_fullbar(struct gui_wps *gwps, char* buf, int buf_size) {0x0e, 0x08, 0x0e, 0x0e}, /* 6 */ {0x0e, 0x02, 0x04, 0x08}, /* 7 */ {0x0e, 0x0e, 0x0a, 0x0e}, /* 8 */ - {0x0e, 0x0e, 0x02, 0x0e}, /* 9 */ + {0x0e, 0x0e, 0x02, 0x0e} /* 9 */ }; struct wps_state *state = skin_get_global_state(); -- cgit v1.2.3