dtls: fix printf format on win32

https://bugzilla.gnome.org/show_bug.cgi?id=755981
This commit is contained in:
Paul Arzelier 2015-10-02 14:46:59 +02:00 committed by Tim-Philipp Müller
parent 58cb254450
commit 86443f8ae2

View file

@ -483,8 +483,8 @@ sink_chain (GstPad * pad, GstObject * parent, GstBuffer * buffer)
map_info.size);
if (ret != map_info.size) {
GST_WARNING_OBJECT (self,
"error sending data: %d B were written, expected value was %zd B",
ret, map_info.size);
"error sending data: %d B were written, expected value was %"
G_GSIZE_FORMAT " B", ret, map_info.size);
}
}