Commit 31d64379 authored by Jean-Paul Saman's avatar Jean-Paul Saman

dv: fix compiler warnings about unused variables.

parent f23f5e62
......@@ -148,7 +148,6 @@ static int Open( vlc_object_t *p_this )
char *psz_name = strdup( p_access->psz_path );
struct raw1394_portinfo port_inf[ 16 ];
raw1394_iso_recv_handler_t handler;
msg_Dbg( p_access, "opening device %s", psz_name );
......@@ -411,6 +410,8 @@ Raw1394Handler(raw1394handle_t handle, unsigned char *data,
access_t *p_access = NULL;
access_sys_t *p_sys = NULL;
block_t *p_block = NULL;
VLC_UNUSED(channel); VLC_UNUSED(tag);
VLC_UNUSED(sy); VLC_UNUSED(cycle); VLC_UNUSED(dropped);
p_access = (access_t *) raw1394_get_userdata( handle );
if( !p_access ) return 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