From 464958ff253a9841ce2ca8d6bc94844c076049d7 Mon Sep 17 00:00:00 2001 From: Eric Koegel Date: Mon, 28 Jul 2014 16:39:54 +0300 Subject: [PATCH] Change unused goto to a return FALSE Build fails due to the label 'out' being used but not defined in the GStreamer 0.10 code path. --- src/gst/parole-gst.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gst/parole-gst.c b/src/gst/parole-gst.c index 22e64b8..a0f31af 100644 --- a/src/gst/parole-gst.c +++ b/src/gst/parole-gst.c @@ -541,7 +541,7 @@ parole_gst_tick_timeout (gpointer data) gst_element_query_position (gst->priv->playbin, &format, &pos); if ( G_UNLIKELY (format != GST_FORMAT_TIME ) ) - goto out; + return FALSE; #endif if ( gst->priv->state == GST_STATE_PLAYING ) -- 2.0.2