Commit 2fe9c763 authored by Felix Paul Kühne's avatar Felix Paul Kühne

input: fix warning

parent 09211029
......@@ -565,7 +565,7 @@ static inline int input_AddSubtitleOSD( input_thread_t *p_input, const char *psz
vout_thread_t *p_vout = input_GetVout( p_input );
if( p_vout )
{
vout_OSDMessage(p_vout, SPU_DEFAULT_CHANNEL, _("Subtitle track added") );
vout_OSDMessage(p_vout, SPU_DEFAULT_CHANNEL, "%s", _("Subtitle track added") );
vlc_object_release( (vlc_object_t *)p_vout );
}
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