mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-17 03:35:21 +00:00
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
This commit is contained in:
parent
f28a4cc671
commit
48b608337b
1 changed files with 3 additions and 0 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue