From 57304d1e0c56a3fa3a2e2867a7fce7e67607fbd5 Mon Sep 17 00:00:00 2001 From: Bertrik Sikken Date: Wed, 12 Oct 2011 20:47:41 +0000 Subject: [PATCH] Make a few local functions static git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30744 a1c6a512-1295-4272-9138-f99709370657 --- apps/playback.c | 2 +- apps/talk.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/playback.c b/apps/playback.c index dbe28dd1c4..d2150f6a00 100644 --- a/apps/playback.c +++ b/apps/playback.c @@ -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 * diff --git a/apps/talk.c b/apps/talk.c index 29657385a7..a11f830665 100644 --- a/apps/talk.c +++ b/apps/talk.c @@ -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