From 82a39d2227cad86011e4570d1ba269f3ebcf3ba9 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Sebastian=20Dr=C3=B6ge?= Date: Thu, 24 Mar 2016 14:08:46 +0200 Subject: [PATCH] gl/gtk: Fix compiler warning in example MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit fxtest.c: In function ‘main’: fxtest.c:190:3: error: ISO C90 forbids mixed declarations and code [-Werror=declaration-after-statement] GtkWidget *window; ^~~~~~~~~ --- tests/examples/gl/gtk/fxtest/fxtest.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/examples/gl/gtk/fxtest/fxtest.c b/tests/examples/gl/gtk/fxtest/fxtest.c index 6200659..4b60b54 100644 --- a/tests/examples/gl/gtk/fxtest/fxtest.c +++ b/tests/examples/gl/gtk/fxtest/fxtest.c @@ -183,10 +183,6 @@ main (gint argc, gchar * argv[]) GstBus *bus; GError *error = NULL; -#ifdef HAVE_X11 - XInitThreads (); -#endif - GtkWidget *window; GtkWidget *screen; GtkWidget *vbox, *combo; @@ -204,6 +200,10 @@ main (gint argc, gchar * argv[]) {NULL} }; +#ifdef HAVE_X11 + XInitThreads (); +#endif + context = g_option_context_new (NULL); g_option_context_add_main_entries (context, options, NULL); g_option_context_add_group (context, gst_init_get_option_group ()); -- 2.7.4