Commit 91c4ffbb authored by Pierre d'Herbemont's avatar Pierre d'Herbemont

shout: Flag unused param.

parent b6832dae
...@@ -560,6 +560,7 @@ static ssize_t Write( sout_access_out_t *p_access, block_t *p_buffer ) ...@@ -560,6 +560,7 @@ static ssize_t Write( sout_access_out_t *p_access, block_t *p_buffer )
*****************************************************************************/ *****************************************************************************/
static int Seek( sout_access_out_t *p_access, off_t i_pos ) static int Seek( sout_access_out_t *p_access, off_t i_pos )
{ {
VLC_UNUSED(i_pos);
msg_Err( p_access, "cannot seek on shout" ); msg_Err( p_access, "cannot seek on shout" );
return VLC_EGENERIC; return VLC_EGENERIC;
} }
......
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