mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-12 18:35:35 +00:00
glcolorscale: fix compiler warning
gstglcolorscale.c(173): warning C4098: 'gst_gl_colorscale_gl_stop': 'void' function returning a value
This commit is contained in:
parent
4fe65c1633
commit
c1cf04f67f
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue