summaryrefslogtreecommitdiff
path: root/ext
diff options
context:
space:
mode:
authorTim-Philipp Müller <tim@centricular.com>2018-08-26 01:52:41 +0200
committerTim-Philipp Müller <tim@centricular.com>2018-08-26 11:16:23 +0200
commitc1cf04f67fbe7ffda42ed9784d414fb88c5188dd (patch)
treea75b216816005348da42adac515506d04ce51ca0 /ext
parent4fe65c163398178760408bc1be0de0580b6aec30 (diff)
glcolorscale: fix compiler warning
gstglcolorscale.c(173): warning C4098: 'gst_gl_colorscale_gl_stop': 'void' function returning a value
Diffstat (limited to 'ext')
-rw-r--r--ext/gl/gstglcolorscale.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/gl/gstglcolorscale.c b/ext/gl/gstglcolorscale.c
index 88b71ef70e..74d0168a25 100644
--- a/ext/gl/gstglcolorscale.c
+++ b/ext/gl/gstglcolorscale.c
@@ -170,7 +170,7 @@ gst_gl_colorscale_gl_stop (GstGLBaseFilter * base_filter)
colorscale->shader = NULL;
}
- return GST_GL_BASE_FILTER_CLASS (parent_class)->gl_stop (base_filter);
+ GST_GL_BASE_FILTER_CLASS (parent_class)->gl_stop (base_filter);
}
static gboolean