mirror of
https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git
synced 2024-12-25 11:30:29 +00:00
threadsharing/udpsrc: Fix build on Windows
This commit is contained in:
parent
923f6e3a5c
commit
ccd607707d
1 changed files with 1 additions and 1 deletions
|
@ -140,7 +140,7 @@ unsafe fn dup_socket(socket: usize) -> usize {
|
|||
proto_info.as_mut_ptr(),
|
||||
);
|
||||
assert_eq!(ret, 0);
|
||||
let mut proto_info = prot_info.assume_init();
|
||||
let mut proto_info = proto_info.assume_init();
|
||||
|
||||
let socket = winsock2::WSASocketA(
|
||||
ws2def::AF_INET,
|
||||
|
|
Loading…
Reference in a new issue