diff options
author | Tim-Philipp Müller <tim.muller@collabora.co.uk> | 2011-11-23 16:01:35 +0000 |
---|---|---|
committer | Tim-Philipp Müller <tim.muller@collabora.co.uk> | 2011-11-23 16:03:15 +0000 |
commit | da43e59aabfbb7e684bea27ce34734c4ee62fda1 (patch) | |
tree | 38b75b40776bf610f3baaf31c0de986edb89180f /gst/smooth/gstsmooth.c | |
parent | 4286414e002016e6f3837696b0dec708d59787dc (diff) |
smooth: fix printf format compiler warning in debug message
https://bugzilla.gnome.org/show_bug.cgi?id=664631
Diffstat (limited to 'gst/smooth/gstsmooth.c')
-rw-r--r-- | gst/smooth/gstsmooth.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/gst/smooth/gstsmooth.c b/gst/smooth/gstsmooth.c index 66eade1d7..2ac87d6fc 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); |