summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim-Philipp Müller <tim@centricular.com>2014-05-14 13:40:03 +0100
committerTim-Philipp Müller <tim@centricular.com>2014-05-14 13:40:03 +0100
commit48b608337beb2fd539b83dd10fc3440a67370adc (patch)
tree0d4fa6cfbf8c931ed03ec5f54374fca87509d919
parentf28a4cc671f161db2698a7e17a8e7b662dbf6d33 (diff)
pluginloader: fix compiler warning on windows
gstpluginloader.c:584:1: error: label 'beach' defined but not used https://bugzilla.gnome.org/show_bug.cgi?id=730125
-rw-r--r--gst/gstpluginloader.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/gst/gstpluginloader.c b/gst/gstpluginloader.c
index 99a81dae3..96d4994fb 100644
--- a/gst/gstpluginloader.c
+++ b/gst/gstpluginloader.c
@@ -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;