diff options
author | Wim Taymans <wim.taymans@gmail.com> | 2008-03-07 15:54:09 +0000 |
---|---|---|
committer | Wim Taymans <wim.taymans@gmail.com> | 2008-03-07 15:54:09 +0000 |
commit | 41e9c150f6071071a0d97306956836238e76cbf7 (patch) | |
tree | 43c800ea92435df225a0d7e79c9d09da4bcc65d9 | |
parent | c299138aaf5e279b36245c72f5442a7c02a76a5b (diff) |
gst/udp/gstudpsrc.c: Fix compilation after removing the GstPollMode from the constructor.
Original commit message from CVS:
* gst/udp/gstudpsrc.c: (gst_udpsrc_start):
Fix compilation after removing the GstPollMode from the
constructor.
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | gst/udp/gstudpsrc.c | 2 |
2 files changed, 7 insertions, 1 deletions
@@ -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: diff --git a/gst/udp/gstudpsrc.c b/gst/udp/gstudpsrc.c index cbf120d6..53277687 100644 --- a/gst/udp/gstudpsrc.c +++ b/gst/udp/gstudpsrc.c @@ -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); |