From aeb45dfe3ba11343bf952a2abd65af158d9024b7 Mon Sep 17 00:00:00 2001 From: =?utf8?q?R=C3=A9mi=20Denis-Courmont?= Date: Thu, 15 Feb 2007 21:11:53 +0000 Subject: [PATCH] Fix net_Listen linking --- include/vlc_network.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/include/vlc_network.h b/include/vlc_network.h index ccb14fe0b3..0b9267586a 100644 --- a/include/vlc_network.h +++ b/include/vlc_network.h @@ -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) -- 2.39.5