]> git.sesse.net Git - vlc/commitdiff
Fixed warning (dvb).
authorLaurent Aimar <fenrir@videolan.org>
Mon, 9 Mar 2009 19:52:01 +0000 (20:52 +0100)
committerLaurent Aimar <fenrir@videolan.org>
Mon, 9 Mar 2009 20:32:25 +0000 (21:32 +0100)
modules/access/dvb/en50221.c

index 4b9ff7cee379bf8444bc97d24030fb757585903f..b2d899121367e73ea1776f5549da1e3ba6a0e6f7 100644 (file)
@@ -1834,7 +1834,7 @@ static int InitSlot( access_t * p_access, int i_slot )
             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 )
         {
             msg_Err( p_access,
@@ -2030,7 +2030,7 @@ int en50221_Poll( access_t * p_access )
 
         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 )
             {
                 msg_Err( p_access,