mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-18 15:51:11 +00:00
glwindow: Fix g_return_val_if_fail in a void function
This commit is contained in:
parent
25c109f850
commit
6b67fdf2ef
1 changed files with 1 additions and 1 deletions
|
@ -1149,7 +1149,7 @@ gst_gl_window_queue_resize (GstGLWindow * window)
|
|||
{
|
||||
GstGLWindowClass *window_class;
|
||||
|
||||
g_return_val_if_fail (GST_GL_IS_WINDOW (window), FALSE);
|
||||
g_return_if_fail (GST_GL_IS_WINDOW (window));
|
||||
window_class = GST_GL_WINDOW_GET_CLASS (window);
|
||||
|
||||
window->queue_resize = TRUE;
|
||||
|
|
Loading…
Reference in a new issue