glcolorscale: fix compiler warning

gstglcolorscale.c(173): warning C4098: 'gst_gl_colorscale_gl_stop': 'void' function returning a value
This commit is contained in:
Tim-Philipp Müller 2018-08-26 01:52:41 +02:00
parent 4fe65c1633
commit c1cf04f67f

View file

@ -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