[vlc-devel] commit: Fixed warning (dvb). (Laurent Aimar )
git version control
git at videolan.org
Mon Mar 9 21:32:52 CET 2009
vlc | branch: master | Laurent Aimar <fenrir at videolan.org> | Mon Mar 9 20:52:01 2009 +0100| [e3a97fd38539016117478ddeffc46f3dabffbdf8] | committer: Laurent Aimar
Fixed warning (dvb).
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=e3a97fd38539016117478ddeffc46f3dabffbdf8
---
modules/access/dvb/en50221.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/modules/access/dvb/en50221.c b/modules/access/dvb/en50221.c
index 4b9ff7c..b2d8991 100644
--- a/modules/access/dvb/en50221.c
+++ b/modules/access/dvb/en50221.c
@@ -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,
More information about the vlc-devel
mailing list