mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-26 06:54:49 +00:00
dtls: fix printf format on win32
This commit is contained in:
parent
8c9ca808af
commit
b58f711566
1 changed files with 1 additions and 1 deletions
|
@ -569,7 +569,7 @@ sink_chain (GstPad * pad, GstObject * parent, GstBuffer * buffer)
|
||||||
return GST_FLOW_OK;
|
return GST_FLOW_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
GST_DEBUG_OBJECT (self, "received buffer from %s with length %zd",
|
GST_DEBUG_OBJECT (self, "received buffer from %s with length %" G_GSIZE_FORMAT,
|
||||||
self->connection_id, gst_buffer_get_size (buffer));
|
self->connection_id, gst_buffer_get_size (buffer));
|
||||||
|
|
||||||
buffer = gst_buffer_make_writable (buffer);
|
buffer = gst_buffer_make_writable (buffer);
|
||||||
|
|
Loading…
Reference in a new issue