From 48b608337beb2fd539b83dd10fc3440a67370adc Mon Sep 17 00:00:00 2001 From: =?utf8?q?Tim-Philipp=20M=C3=BCller?= Date: Wed, 14 May 2014 13:40:03 +0100 Subject: [PATCH] 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 --- gst/gstpluginloader.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/gst/gstpluginloader.c b/gst/gstpluginloader.c index 99a81da..96d4994 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; -- 2.7.4