gst/udp/gstudpsrc.c: Fix compilation after removing the GstPollMode from the constructor.
authorWim Taymans <wim.taymans@gmail.com>
Fri, 7 Mar 2008 15:54:09 +0000 (15:54 +0000)
committerWim Taymans <wim.taymans@gmail.com>
Fri, 7 Mar 2008 15:54:09 +0000 (15:54 +0000)
Original commit message from CVS:
* gst/udp/gstudpsrc.c: (gst_udpsrc_start):
Fix compilation after removing the GstPollMode from the
constructor.

ChangeLog
gst/udp/gstudpsrc.c

index bf2fe6d..dc25136 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2008-03-07  Wim Taymans  <wim.taymans@collabora.co.uk>
+
+       * gst/udp/gstudpsrc.c: (gst_udpsrc_start):
+       Fix compilation after removing the GstPollMode from the
+       constructor.
+
 2008-03-07  Sebastian Dröge  <slomo@circular-chaos.org>
 
        * configure.ac:
index cbf120d..5327768 100644 (file)
@@ -761,7 +761,7 @@ gst_udpsrc_start (GstBaseSrc * bsrc)
 
   src->myaddr.sin_port = htons (src->port + 1);
 
-  if ((src->fdset = gst_poll_new (GST_POLL_MODE_AUTO, TRUE)) == NULL)
+  if ((src->fdset = gst_poll_new (TRUE)) == NULL)
     goto no_fdset;
 
   gst_poll_add_fd (src->fdset, &src->sock);