Commit 39599d62 authored by Jean-Paul Saman's avatar Jean-Paul Saman

Fix compiler warning about unused variables.

parent c61c5390
......@@ -55,7 +55,6 @@ vlc_module_end();
static int OpenFilter( vlc_object_t *p_this )
{
filter_t *p_filter = (filter_t*)p_this;
filter_sys_t *p_sys;
if( p_filter->fmt_in.video.i_chroma != p_filter->fmt_out.video.i_chroma )
{
......@@ -82,6 +81,7 @@ static int OpenFilter( vlc_object_t *p_this )
*****************************************************************************/
static void CloseFilter( vlc_object_t *p_this )
{
VLC_UNUSED(p_this);
}
/****************************************************************************
......
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