From 50d58678e08fc2a5356ac02f86a87bd9eebf9b42 Mon Sep 17 00:00:00 2001 From: Nirbheek Chauhan Date: Wed, 6 Feb 2019 00:30:35 +0530 Subject: [PATCH] misc: Fix warnings on Cerbero's ancient MinGW gesdemux.c:297:3: error: value computed is not used [-Werror=unused-value] --- plugins/ges/gesdemux.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/plugins/ges/gesdemux.c b/plugins/ges/gesdemux.c index 1096790..824d1ce 100644 --- a/plugins/ges/gesdemux.c +++ b/plugins/ges/gesdemux.c @@ -268,6 +268,7 @@ ges_timeline_new_from_uri_from_main_thread (TimelineConstructionData * data) GESUriClipAssetClass *klass = g_type_class_peek (GES_TYPE_URI_CLIP_ASSET); GstDiscoverer *previous_discoverer = klass->discoverer; GstClockTime timeout; + G_GNUC_UNUSED void *unused; g_object_get (previous_discoverer, "timeout", &timeout, NULL); @@ -294,7 +295,7 @@ ges_timeline_new_from_uri_from_main_thread (TimelineConstructionData * data) g_signal_connect (project, "error-loading-asset", G_CALLBACK (error_loading_asset_cb), data); - GES_TIMELINE (ges_asset_extract (GES_ASSET (project), &data->error)); + unused = GES_TIMELINE (ges_asset_extract (GES_ASSET (project), &data->error)); if (data->error) { g_mutex_unlock (&data->lock); -- 2.7.4