Commit e61faec4 authored by Eric Petit's avatar Eric Petit

v4l.c: compile fix

parent bbebf153
......@@ -2,7 +2,7 @@
* v4l.c : Video4Linux input module for vlc
*****************************************************************************
* Copyright (C) 2002 VideoLAN
* $Id: v4l.c,v 1.6 2003/03/31 04:26:17 fenrir Exp $
* $Id: v4l.c,v 1.7 2003/04/09 09:59:59 titer Exp $
*
* Author: Samuel Hocevar <sam@zoy.org>
*
......@@ -831,7 +831,7 @@ static void AccessClose( vlc_object_t *p_this )
close( p_sys->fd );
if( p_sys->p_video_mmap )
{
munmap( p_sys->p_video_mmap, p_sys->vid_mbuf.size )
munmap( p_sys->p_video_mmap, p_sys->vid_mbuf.size );
}
#ifdef _V4L_AUDIO_
if( p_sys->fd_audio >= 0 )
......
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