loadfile: make get_audio_lang function static

This fixes a build warning about missing prototypes
This commit is contained in:
llyyr 2023-07-17 20:49:04 +05:30 committed by sfan5
parent 8a6cabce35
commit fbd392bcbb
1 changed files with 1 additions and 1 deletions

View File

@ -579,7 +579,7 @@ static char **process_langs(char **in)
return out;
}
const char *get_audio_lang(struct MPContext *mpctx)
static const char *get_audio_lang(struct MPContext *mpctx)
{
// If we have a single current audio track, this is simple.
if (mpctx->current_track[0][STREAM_AUDIO])