gio: Use correct format modifier for size_t
authorLRN <lrn1986@gmail.com>
Sat, 28 Feb 2009 18:37:53 +0000 (19:37 +0100)
committerSebastian Dröge <sebastian.droege@collabora.co.uk>
Sat, 28 Feb 2009 18:37:53 +0000 (19:37 +0100)
Fixes bug #573528.

ext/gio/gstgiobasesink.c

index 549b8ca..125fc90 100644 (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;
   }