summaryrefslogtreecommitdiff
path: root/gst/y4m
diff options
context:
space:
mode:
authorMatej Knopp <matej.knopp@gmail.com>2011-11-21 22:45:15 +0100
committerTim-Philipp Müller <tim.muller@collabora.co.uk>2011-11-23 23:43:15 +0000
commit9d0bdcf6d75180276c7b6cb85127bd6dec460174 (patch)
tree74ff21b9bfa26beba0c41e68ca93ffcadedeb320 /gst/y4m
parent0a9387c43cffab2c357d79a64b02c1058b7cee89 (diff)
downloadgstreamer-plugins-bad-9d0bdcf6d75180276c7b6cb85127bd6dec460174.tar.gz
Fix printf format compiler warnings on OS X / 64 bit
https://bugzilla.gnome.org/show_bug.cgi?id=662618
Diffstat (limited to 'gst/y4m')
-rw-r--r--gst/y4m/gsty4mdec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gst/y4m/gsty4mdec.c b/gst/y4m/gsty4mdec.c
index 3b431bda0..ba7874b38 100644
--- a/gst/y4m/gsty4mdec.c
+++ b/gst/y4m/gsty4mdec.c
@@ -523,7 +523,7 @@ gst_y4m_dec_chain (GstPad * pad, GstObject * parent, GstBuffer * buffer)
len = strlen (header);
if (n_avail < y4mdec->info.size + len + 1) {
/* not enough data */
- GST_DEBUG ("not enough data for frame %d < %d",
+ GST_DEBUG ("not enough data for frame %d < %" G_GSIZE_FORMAT,
n_avail, y4mdec->info.size + len + 1);
break;
}