From 0ff9b1e27663477c714bcbaa2bff6ab5a7575da2 Mon Sep 17 00:00:00 2001 From: Ravi Kiran K N Date: Thu, 23 Apr 2015 09:50:12 +0530 Subject: [PATCH] video-converter: n_lines member should be a guint not a boolean https://bugzilla.gnome.org/show_bug.cgi?id=748348 --- gst-libs/gst/video/video-converter.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gst-libs/gst/video/video-converter.c b/gst-libs/gst/video/video-converter.c index fa655f578f..10d310e15a 100644 --- a/gst-libs/gst/video/video-converter.c +++ b/gst-libs/gst/video/video-converter.c @@ -298,7 +298,7 @@ struct _GstLineCache gpointer need_line_data; GDestroyNotify need_line_notify; - gboolean n_lines; + guint n_lines; guint stride; GstLineCacheAllocLineFunc alloc_line; gpointer alloc_line_data;