Commit e3a97fd3 authored by Laurent Aimar's avatar Laurent Aimar

Fixed warning (dvb).

parent e0d63ad3
...@@ -1834,7 +1834,7 @@ static int InitSlot( access_t * p_access, int i_slot ) ...@@ -1834,7 +1834,7 @@ static int InitSlot( access_t * p_access, int i_slot )
break; break;
} }
if ( TPDUSend( p_access, i_slot, T_CREATE_TC, NULL, NULL ) if ( TPDUSend( p_access, i_slot, T_CREATE_TC, NULL, 0 )
!= VLC_SUCCESS ) != VLC_SUCCESS )
{ {
msg_Err( p_access, msg_Err( p_access,
...@@ -2030,7 +2030,7 @@ int en50221_Poll( access_t * p_access ) ...@@ -2030,7 +2030,7 @@ int en50221_Poll( access_t * p_access )
if ( !p_sys->pb_tc_has_data[i_slot] ) if ( !p_sys->pb_tc_has_data[i_slot] )
{ {
if ( TPDUSend( p_access, i_slot, T_DATA_LAST, NULL, NULL ) != if ( TPDUSend( p_access, i_slot, T_DATA_LAST, NULL, 0 ) !=
VLC_SUCCESS ) VLC_SUCCESS )
{ {
msg_Err( p_access, msg_Err( p_access,
......
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