Commit 0a175879 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

include: fix external compilation (fixes #12355)

(cherry picked from commit 98682b66af497c2a038011aae227fbd13511167a)
parent 468e0814
...@@ -565,7 +565,8 @@ static inline int input_AddSubtitleOSD( input_thread_t *p_input, const char *psz ...@@ -565,7 +565,8 @@ static inline int input_AddSubtitleOSD( input_thread_t *p_input, const char *psz
vout_thread_t *p_vout = input_GetVout( p_input ); vout_thread_t *p_vout = input_GetVout( p_input );
if( p_vout ) if( p_vout )
{ {
vout_OSDMessage(p_vout, SPU_DEFAULT_CHANNEL, "%s", _("Subtitle track added") ); vout_OSDMessage(p_vout, SPU_DEFAULT_CHANNEL, "%s",
vlc_gettext("Subtitle track added") );
vlc_object_release( (vlc_object_t *)p_vout ); vlc_object_release( (vlc_object_t *)p_vout );
} }
return i_result; return i_result;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment