Commit 881f3f8c authored by Jean-Paul Saman's avatar Jean-Paul Saman

Cast interface pointer to VLC_OBJECT().

parent 90714e7e
...@@ -148,9 +148,9 @@ static void Run( intf_thread_t *p_intf ) ...@@ -148,9 +148,9 @@ static void Run( intf_thread_t *p_intf )
} }
if( b_master ) if( b_master )
i_socket = net_ListenUDP1( p_intf, NULL, NETSYNC_PORT ); i_socket = net_ListenUDP1( VLC_OBJECT(p_intf), NULL, NETSYNC_PORT );
else else
i_socket = net_ConnectUDP( p_intf, psz_master, NETSYNC_PORT, 0 ); i_socket = net_ConnectUDP( VLC_OBJECT(p_intf), psz_master, NETSYNC_PORT, 0 );
if( psz_master ) free( psz_master ); if( psz_master ) free( psz_master );
......
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