Make scrobbler_flush_cache() static

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30235 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Frank Gevaerts 2011-08-01 19:43:13 +00:00
parent 9d8866c7c2
commit 00c0221800
2 changed files with 1 additions and 2 deletions

View File

@ -258,7 +258,7 @@ int scrobbler_init(void)
return 1;
}
void scrobbler_flush_cache(void)
static void scrobbler_flush_cache(void)
{
if (scrobbler_initialised)
{

View File

@ -23,7 +23,6 @@
#define __SCROBBLER_H__
int scrobbler_init(void);
void scrobbler_flush_cache(void);
void scrobbler_shutdown(void);
void scrobbler_poweroff(void);
bool scrobbler_is_enabled(void);