diff options
| -rw-r--r-- | apps/playback.c | 2 | ||||
| -rw-r--r-- | apps/talk.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/apps/playback.c b/apps/playback.c index dbe28dd..d2150f6 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 2965738..a11f830 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 |