diff options
| author | Boris Gjenero <dreamlayers@rockbox.org> | 2011-12-21 17:36:18 +0000 |
|---|---|---|
| committer | Boris Gjenero <dreamlayers@rockbox.org> | 2011-12-21 17:36:18 +0000 |
| commit | 14c2e677fd3c23ce7ae633b04dc64973c07a4479 (patch) | |
| tree | 343ace015d576df26e0f6e9f71f8a077204852af /apps | |
| parent | 2800c55a6adda5987d9675e3e73185b8d7b30cab (diff) | |
| download | rockbox-14c2e677fd3c23ce7ae633b04dc64973c07a4479.zip rockbox-14c2e677fd3c23ce7ae633b04dc64973c07a4479.tar.gz rockbox-14c2e677fd3c23ce7ae633b04dc64973c07a4479.tar.bz2 rockbox-14c2e677fd3c23ce7ae633b04dc64973c07a4479.tar.xz | |
Make more local functions static.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@31395 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
| -rw-r--r-- | apps/screen_access.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/screen_access.c b/apps/screen_access.c index 834ece3..cd58654 100644 --- a/apps/screen_access.c +++ b/apps/screen_access.c @@ -129,7 +129,7 @@ void screen_helper_remote_setfont(int font) lcd_remote_setfont(font); } -int screen_helper_remote_getuifont(void) +static int screen_helper_remote_getuifont(void) { #ifdef HAVE_LCD_BITMAP return global_status.font_id[SCREEN_REMOTE]; @@ -138,7 +138,7 @@ int screen_helper_remote_getuifont(void) #endif } -void screen_helper_remote_setuifont(int font) +static void screen_helper_remote_setuifont(int font) { #ifdef HAVE_LCD_BITMAP global_status.font_id[SCREEN_REMOTE] = font; |