summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorhoonhee.lee <hoonhee.lee@lge.com>2015-03-09 12:41:59 +0900
committerSebastian Dröge <sebastian@centricular.com>2015-03-09 08:41:25 +0100
commit3beb48162fced9c2639ec6ebe08a434f215bb1e8 (patch)
tree53f5a47a5ac98dd7f45efc99b500e5aee5d1b202 /tests
parentd49dbefd6c49193073c6334fd493f6899bf237d2 (diff)
downloadgstreamer-plugins-bad-3beb48162fced9c2639ec6ebe08a434f215bb1e8.tar.gz
tests: glcontext: remove unnecessary semicolon
https://bugzilla.gnome.org/show_bug.cgi?id=745875
Diffstat (limited to 'tests')
-rw-r--r--tests/check/libs/gstglcontext.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/check/libs/gstglcontext.c b/tests/check/libs/gstglcontext.c
index 20c470802..bc0fa7874 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)