Commit 9984bea3 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Another Win32 problem

parent a1758f7b
...@@ -78,7 +78,7 @@ rtcp_sender_t *OpenRTCP (vlc_object_t *obj, int rtp_fd, int proto, ...@@ -78,7 +78,7 @@ rtcp_sender_t *OpenRTCP (vlc_object_t *obj, int rtp_fd, int proto,
fd = dup (rtp_fd); fd = dup (rtp_fd);
#else #else
WSAPROTOCOL_INFO info; WSAPROTOCOL_INFO info;
WSADuplicateSocket (rtp_fd, GetProcessId (), &info); WSADuplicateSocket (rtp_fd, GetCurrentProcessId (), &info);
fd = WSASocket (info.iAddressFamily, info.iSocketType, info.iProtocol, fd = WSASocket (info.iAddressFamily, info.iSocketType, info.iProtocol,
&info, 0, 0); &info, 0, 0);
#endif #endif
......
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