Commit df1fe67b authored by Jean-Paul Saman's avatar Jean-Paul Saman Committed by Jean-Paul Saman

fix compiler warnings in modules/video_output/fb.c

parent 5e7051c3
...@@ -466,6 +466,7 @@ static int NewPicture( vout_thread_t *p_vout, picture_t *p_pic ) ...@@ -466,6 +466,7 @@ static int NewPicture( vout_thread_t *p_vout, picture_t *p_pic )
*****************************************************************************/ *****************************************************************************/
static void FreePicture( vout_thread_t *p_vout, picture_t *p_pic ) static void FreePicture( vout_thread_t *p_vout, picture_t *p_pic )
{ {
VLC_UNUSED(p_vout);
free( p_pic->p_sys->p_data ); free( p_pic->p_sys->p_data );
free( p_pic->p_sys ); free( p_pic->p_sys );
p_pic->p_sys = NULL; p_pic->p_sys = NULL;
...@@ -978,6 +979,7 @@ static void CloseDisplay( vout_thread_t *p_vout ) ...@@ -978,6 +979,7 @@ static void CloseDisplay( vout_thread_t *p_vout )
*****************************************************************************/ *****************************************************************************/
static void SwitchDisplay( int i_signal ) static void SwitchDisplay( int i_signal )
{ {
VLC_UNUSED( i_signal );
#if 0 #if 0
vout_thread_t *p_vout; vout_thread_t *p_vout;
......
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