]> git.sesse.net Git - vlc/commitdiff
Fix net_Listen linking
authorRémi Denis-Courmont <rem@videolan.org>
Thu, 15 Feb 2007 21:11:53 +0000 (21:11 +0000)
committerRémi Denis-Courmont <rem@videolan.org>
Thu, 15 Feb 2007 21:11:53 +0000 (21:11 +0000)
include/vlc_network.h

index ccb14fe0b3050f9bc405c75f8c0191ed6cfdb961..0b9267586a3b473ab16f41b98ddb2760d9c58f5c 100644 (file)
@@ -73,8 +73,7 @@ int net_Socket (vlc_object_t *obj, int family, int socktype, int proto);
 #define net_Connect(a, b, c, d, e) __net_Connect(VLC_OBJECT(a), b, c, d, e)
 VLC_EXPORT( int, __net_Connect, (vlc_object_t *p_this, const char *psz_host, int i_port, int socktype, int protocol) );
 
-VLC_EXPORT( int *, net_Listen, (vlc_object_t *p_this, const char *psz_host, int i_port,
-                                int family, int socktype, int protocol) );
+VLC_EXPORT( int *, net_Listen, (vlc_object_t *p_this, const char *psz_host, int i_port, int family, int socktype, int protocol) );
 VLC_EXPORT( int, net_ListenSingle, (vlc_object_t *p_this, const char *psz_host, int i_port, int family, int socktype, int protocol) );
 
 #define net_ListenTCP(a, b, c) __net_ListenTCP(VLC_OBJECT(a), b, c)