From 3beb48162fced9c2639ec6ebe08a434f215bb1e8 Mon Sep 17 00:00:00 2001 From: "hoonhee.lee" Date: Mon, 9 Mar 2015 12:41:59 +0900 Subject: [PATCH] tests: glcontext: remove unnecessary semicolon https://bugzilla.gnome.org/show_bug.cgi?id=745875 --- tests/check/libs/gstglcontext.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/check/libs/gstglcontext.c b/tests/check/libs/gstglcontext.c index 20c4708022..bc0fa78742 100644 --- a/tests/check/libs/gstglcontext.c +++ b/tests/check/libs/gstglcontext.c @@ -114,7 +114,7 @@ deinit (gpointer data) { GstGLContext *context = data; GstGLFuncs *gl = context->gl_vtable; - gl->DeleteTextures (1, &tex);; + gl->DeleteTextures (1, &tex); gst_object_unref (fbo); #if GST_GL_HAVE_GLES2 if (gst_gl_context_get_gl_api (context) & GST_GL_API_GLES2)