mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-24 08:08:22 +00:00
gst/dccp/gstdccp.c: Whoops, that was one fix too much :)
Original commit message from CVS: * gst/dccp/gstdccp.c: (gst_dccp_send_buffer): Whoops, that was one fix too much :)
This commit is contained in:
parent
c6486e2522
commit
7ab335f846
2 changed files with 6 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
2008-08-26 Edward Hervey <edward.hervey@collabora.co.uk>
|
||||||
|
|
||||||
|
* gst/dccp/gstdccp.c: (gst_dccp_send_buffer):
|
||||||
|
Whoops, that was one fix too much :)
|
||||||
|
|
||||||
2008-08-26 Edward Hervey <edward.hervey@collabora.co.uk>
|
2008-08-26 Edward Hervey <edward.hervey@collabora.co.uk>
|
||||||
|
|
||||||
* gst/dccp/gstdccp.c: (gst_dccp_read_buffer),
|
* gst/dccp/gstdccp.c: (gst_dccp_read_buffer),
|
||||||
|
|
|
@ -285,7 +285,7 @@ gst_dccp_send_buffer (GstElement * this, GstBuffer * buffer, int client_sock_fd,
|
||||||
size = GST_BUFFER_SIZE (buffer);
|
size = GST_BUFFER_SIZE (buffer);
|
||||||
data = GST_BUFFER_DATA (buffer);
|
data = GST_BUFFER_DATA (buffer);
|
||||||
|
|
||||||
GST_LOG_OBJECT (this, "writing %" G_GSIZE_FORMAT " bytes", size);
|
GST_LOG_OBJECT (this, "writing %d bytes", size);
|
||||||
|
|
||||||
if (packet_size < 0) {
|
if (packet_size < 0) {
|
||||||
GST_LOG_OBJECT (this, "error getting MTU");
|
GST_LOG_OBJECT (this, "error getting MTU");
|
||||||
|
|
Loading…
Reference in a new issue