tests: glcontext: remove unnecessary semicolon

https://bugzilla.gnome.org/show_bug.cgi?id=745875
This commit is contained in:
hoonhee.lee 2015-03-09 12:41:59 +09:00 committed by Sebastian Dröge
parent d49dbefd6c
commit 3beb48162f

View file

@ -114,7 +114,7 @@ deinit (gpointer data)
{ {
GstGLContext *context = data; GstGLContext *context = data;
GstGLFuncs *gl = context->gl_vtable; GstGLFuncs *gl = context->gl_vtable;
gl->DeleteTextures (1, &tex);; gl->DeleteTextures (1, &tex);
gst_object_unref (fbo); gst_object_unref (fbo);
#if GST_GL_HAVE_GLES2 #if GST_GL_HAVE_GLES2
if (gst_gl_context_get_gl_api (context) & GST_GL_API_GLES2) if (gst_gl_context_get_gl_api (context) & GST_GL_API_GLES2)