summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPolochon_street <polochonstreet@gmx.fr>2015-10-02 17:05:11 +0200
committerSebastian Dröge <sebastian@centricular.com>2015-10-05 12:17:11 +0100
commitc830a31552c65059bff347bf0d0b559446c2ebe3 (patch)
treee0ffe58cf6afc8ec7b74fd0ead7e86674422de7c
parentcfc449fad3e816cc1f38f0cafd716753e98afca8 (diff)
downloadgstreamer-plugins-bad-c830a31552c65059bff347bf0d0b559446c2ebe3.tar.gz
dtls: fix printf format on win32
-rw-r--r--ext/dtls/gstdtlsdec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/dtls/gstdtlsdec.c b/ext/dtls/gstdtlsdec.c
index ac6ba77d4..eecc458b3 100644
--- a/ext/dtls/gstdtlsdec.c
+++ b/ext/dtls/gstdtlsdec.c
@@ -569,7 +569,7 @@ sink_chain (GstPad * pad, GstObject * parent, GstBuffer * buffer)
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));
buffer = gst_buffer_make_writable (buffer);