summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThijs Vermeir <thijsvermeir@gmail.com>2012-12-18 15:54:08 +0100
committerTim-Philipp Müller <tim@centricular.net>2012-12-18 16:10:59 +0000
commite66ce3889e9d27b77260fe8a4b95e40206cfeb15 (patch)
treebd9d106703c21bea62a2ab2f46b158e4e131e8ec
parentbd381c42898c111d9b3d7d2fb8bf38f8a272e75e (diff)
gdkpixbuf: use appropriate printf format for gsize
-rw-r--r--ext/gdk_pixbuf/gstgdkpixbufdec.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/ext/gdk_pixbuf/gstgdkpixbufdec.c b/ext/gdk_pixbuf/gstgdkpixbufdec.c
index 5f7013d42..820f1a2e9 100644
--- a/ext/gdk_pixbuf/gstgdkpixbufdec.c
+++ b/ext/gdk_pixbuf/gstgdkpixbufdec.c
@@ -347,7 +347,8 @@ gst_gdk_pixbuf_dec_flush (GstGdkPixbufDec * filter)
gst_video_frame_unmap (&frame);
- GST_DEBUG ("pushing... %d bytes", gst_buffer_get_size (outbuf));
+ GST_DEBUG ("pushing... %" G_GSIZE_FORMAT " bytes",
+ gst_buffer_get_size (outbuf));
ret = gst_pad_push (filter->srcpad, outbuf);
if (ret != GST_FLOW_OK)