1
0
Fork 0
forked from len0rd/rockbox

Make a few local functions static

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30744 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Bertrik Sikken 2011-10-12 20:47:41 +00:00
parent 936fd540c0
commit 57304d1e0c
2 changed files with 2 additions and 2 deletions

View file

@ -1284,7 +1284,7 @@ static bool audio_get_track_metadata(int offset, struct mp3entry *id3)
}
/* Get a resume rewind adjusted offset from the ID3 */
unsigned long resume_rewind_adjusted_offset(const struct mp3entry *id3)
static unsigned long resume_rewind_adjusted_offset(const struct mp3entry *id3)
{
unsigned long offset = id3->offset;
size_t resume_rewind = global_settings.resume_rewind *

View file

@ -734,7 +734,7 @@ bool talk_voice_required(void)
#endif
/* return size of voice file */
int talk_get_buffer(void)
static int talk_get_buffer(void)
{
int ret = voicefile_size;
#if CONFIG_CODEC == SWCODEC