smooth: fix printf format compiler warning in debug message

https://bugzilla.gnome.org/show_bug.cgi?id=664631
This commit is contained in:
Tim-Philipp Müller 2011-11-23 16:01:35 +00:00
parent 4286414e00
commit da43e59aab

View File

@ -188,9 +188,8 @@ gst_smooth_transform (GstBaseTransform * btrans, GstBuffer * inbuf,
GstBuffer * outbuf) GstBuffer * outbuf)
{ {
GstSmooth *smooth; GstSmooth *smooth;
guchar *idata, *odata; guint8 *idata, *odata;
gulong size; guint size, lumsize, chromsize;
gint lumsize, chromsize;
smooth = GST_SMOOTH (btrans); smooth = GST_SMOOTH (btrans);
idata = GST_BUFFER_DATA (inbuf); idata = GST_BUFFER_DATA (inbuf);