From b58f7115665532fd0676baa151fd85ffe3c8bdd3 Mon Sep 17 00:00:00 2001 From: Polochon_street Date: Fri, 2 Oct 2015 17:05:11 +0200 Subject: [PATCH] dtls: fix printf format on win32 --- ext/dtls/gstdtlsdec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/dtls/gstdtlsdec.c b/ext/dtls/gstdtlsdec.c index ac6ba77..eecc458 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); -- 2.7.4