gst/udp/gstmultiudpsink.c: Provide the parameters that are required for the format...
authorSebastian Dröge <slomo@circular-chaos.org>
Sun, 30 Nov 2008 16:24:45 +0000 (16:24 +0000)
committerSebastian Dröge <slomo@circular-chaos.org>
Sun, 30 Nov 2008 16:24:45 +0000 (16:24 +0000)
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.

ChangeLog
gst/udp/gstmultiudpsink.c

index 8b20084..d33d4a0 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -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>
 
        * gst/autodetect/gstautoaudiosrc.c:
index 5b55b2c..9483483 100644 (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
          * break streaming. We break so that we stop retrying for this client. */
         if (errno != EINTR && errno != EAGAIN) {
-          GST_WARNING_OBJECT (sink, "client %p gave error %d (%s)", errno,
-              g_strerror (errno));
+          GST_WARNING_OBJECT (sink, "client %p gave error %d (%s)", client,
+              errno, g_strerror (errno));
           break;
         }
       } else {