gl/gtk: Fix compiler warning in example
authorSebastian Dröge <sebastian@centricular.com>
Thu, 24 Mar 2016 12:08:46 +0000 (14:08 +0200)
committerSebastian Dröge <sebastian@centricular.com>
Thu, 24 Mar 2016 12:08:46 +0000 (14:08 +0200)
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

index 6200659..4b60b54 100644 (file)
@@ -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 ());