Commit d6fc1ee1 authored by Christophe Mutricy's avatar Christophe Mutricy

Compile fix

parent 29df9423
...@@ -363,8 +363,8 @@ VLC_EXPORT( int, __net_vaPrintf, ( vlc_object_t *p_this, int fd, v_socket_t *, c ...@@ -363,8 +363,8 @@ VLC_EXPORT( int, __net_vaPrintf, ( vlc_object_t *p_this, int fd, v_socket_t *, c
# define net_StopRecv( fd ) shutdown( fd, SD_RECEIVE ) # define net_StopRecv( fd ) shutdown( fd, SD_RECEIVE )
#else #else
# warning FIXME: implement shutdown on your platform! # warning FIXME: implement shutdown on your platform!
# define net_StopSend( fd ) void(0) # define net_StopSend( fd ) return(-1)
# define net_StopRecv( fd ) void(0) # define net_StopRecv( fd ) return(-1)
#endif #endif
#define net_CheckIP(a,b,c,d) __net_CheckIP(VLC_OBJECT(a),b,c,d) #define net_CheckIP(a,b,c,d) __net_CheckIP(VLC_OBJECT(a),b,c,d)
......
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