gio: Use correct format modifier for size_t

Fixes bug #573528.
This commit is contained in:
LRN 2009-02-28 19:37:53 +01:00 committed by Sebastian Dröge
parent e5d2d32bba
commit 95c838f051

View file

@ -266,7 +266,7 @@ gst_gio_base_sink_render (GstBaseSink * base_sink, GstBuffer * buffer)
* doesn't... */
GST_ELEMENT_ERROR (sink, RESOURCE, WRITE, (NULL),
("Could not write to stream: (short write, only %"
G_GUINT64_FORMAT " bytes of %d bytes written)",
G_GSSIZE_FORMAT " bytes of %d bytes written)",
written, GST_BUFFER_SIZE (buffer)));
return GST_FLOW_ERROR;
}