pluginloader: fix compiler warning on windows
authorTim-Philipp Müller <tim@centricular.com>
Wed, 14 May 2014 12:40:03 +0000 (13:40 +0100)
committerTim-Philipp Müller <tim@centricular.com>
Wed, 14 May 2014 12:40:03 +0000 (13:40 +0100)
gstpluginloader.c:584:1: error: label 'beach' defined but not used

https://bugzilla.gnome.org/show_bug.cgi?id=730125

gst/gstpluginloader.c

index 99a81da..96d4994 100644 (file)
@@ -581,7 +581,10 @@ _gst_plugin_loader_client_run (void)
   /* Loop, listening for incoming packets on the fd and writing responses */
   while (!l->rx_done && exchange_packets (l));
 
+#ifndef G_OS_WIN32
 beach:
+#endif
+
   plugin_loader_free (l);
 
   return res;