gst/udp/gstmultiudpsink.c: Provide the parameters that are required for the format string to fix a compiler warning.

Original commit message from CVS:
* gst/udp/gstmultiudpsink.c: (gst_multiudpsink_render):
Provide the parameters that are required for the format string
to fix a compiler warning.
This commit is contained in:
Sebastian Dröge 2008-11-30 16:24:45 +00:00
parent 4be0ab8e86
commit cfcc44e3ba
2 changed files with 8 additions and 2 deletions

View file

@ -1,3 +1,9 @@
2008-11-30 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* gst/udp/gstmultiudpsink.c: (gst_multiudpsink_render):
Provide the parameters that are required for the format string
to fix a compiler warning.
2008-11-29 Stefan Kost <ensonic@users.sf.net> 2008-11-29 Stefan Kost <ensonic@users.sf.net>
* gst/autodetect/gstautoaudiosrc.c: * gst/autodetect/gstautoaudiosrc.c:

View file

@ -410,8 +410,8 @@ gst_multiudpsink_render (GstBaseSink * bsink, GstBuffer * buffer)
/* some error, just warn, it's likely recoverable and we don't want to /* some error, just warn, it's likely recoverable and we don't want to
* break streaming. We break so that we stop retrying for this client. */ * break streaming. We break so that we stop retrying for this client. */
if (errno != EINTR && errno != EAGAIN) { if (errno != EINTR && errno != EAGAIN) {
GST_WARNING_OBJECT (sink, "client %p gave error %d (%s)", errno, GST_WARNING_OBJECT (sink, "client %p gave error %d (%s)", client,
g_strerror (errno)); errno, g_strerror (errno));
break; break;
} }
} else { } else {