diff options
author | Sebastian Dröge <slomo@circular-chaos.org> | 2008-11-30 16:24:45 +0000 |
---|---|---|
committer | Sebastian Dröge <slomo@circular-chaos.org> | 2008-11-30 16:24:45 +0000 |
commit | cfcc44e3bac579fd2a3b51e352a05d973ee8bed5 (patch) | |
tree | 304972ea8ba4ff2ff6dce5940d9619ccbbef010e /gst/udp | |
parent | 4be0ab8e86ab2442d7405803a8a518be47a2d020 (diff) |
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.
Diffstat (limited to 'gst/udp')
-rw-r--r-- | gst/udp/gstmultiudpsink.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gst/udp/gstmultiudpsink.c b/gst/udp/gstmultiudpsink.c index 5b55b2ce..9483483b 100644 --- a/gst/udp/gstmultiudpsink.c +++ b/gst/udp/gstmultiudpsink.c @@ -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 { |