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)
{
GstSmooth *smooth;
guchar *idata, *odata;
gulong size;
gint lumsize, chromsize;
guint8 *idata, *odata;
guint size, lumsize, chromsize;
smooth = GST_SMOOTH (btrans);
idata = GST_BUFFER_DATA (inbuf);