Commit 672a219c authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Fix format string usage. Problem reported by David Thiel.

parent 42c9aebc
......@@ -623,7 +623,7 @@ static void ParseVorbisComments( decoder_t *p_dec )
*psz_value = '\0';
psz_value++;
input_Control( p_input, INPUT_ADD_INFO, _("Vorbis comment"),
psz_name, psz_value );
psz_name, "%s", psz_value );
if( strcasestr( psz_name, "artist" ) )
{
vlc_input_item_AddInfo( p_input->input.p_item,
......
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