From: RĂ©mi Denis-Courmont Date: Thu, 15 Feb 2007 21:11:53 +0000 (+0000) Subject: Fix net_Listen linking X-Git-Tag: 0.9.0-test0~8567 X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=aeb45dfe3ba11343bf952a2abd65af158d9024b7;p=vlc Fix net_Listen linking --- 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)