From da43e59aabfbb7e684bea27ce34734c4ee62fda1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim-Philipp=20M=C3=BCller?= Date: Wed, 23 Nov 2011 16:01:35 +0000 Subject: [PATCH] smooth: fix printf format compiler warning in debug message https://bugzilla.gnome.org/show_bug.cgi?id=664631 --- gst/smooth/gstsmooth.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/gst/smooth/gstsmooth.c b/gst/smooth/gstsmooth.c index 66eade1d78..2ac87d6fc0 100644 --- a/gst/smooth/gstsmooth.c +++ b/gst/smooth/gstsmooth.c @@ -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);