mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-29 18:48:44 +00:00
udpsrc: fix build on win32
gstudpsrc.c:855:15: error: #if with no expression
This commit is contained in:
parent
5d2ff288b3
commit
60e72b0254
1 changed files with 1 additions and 1 deletions
|
@ -852,7 +852,7 @@ gst_udpsrc_start (GstBaseSrc * bsrc)
|
||||||
* on the same port but for different addresses than the multicast
|
* on the same port but for different addresses than the multicast
|
||||||
* address
|
* address
|
||||||
*/
|
*/
|
||||||
#if G_OS_WIN32
|
#ifdef G_OS_WIN32
|
||||||
if (g_inet_address_get_is_multicast (addr))
|
if (g_inet_address_get_is_multicast (addr))
|
||||||
bind_addr = g_inet_address_new_any (g_inet_address_get_family (addr));
|
bind_addr = g_inet_address_new_any (g_inet_address_get_family (addr));
|
||||||
else
|
else
|
||||||
|
|
Loading…
Reference in a new issue