[gnome-builder/gnome-builder-3-28] buildstage: fix cast



commit e6ead85b6ed544a01d63e3eaeab16bb9700af283
Author: Rico Tzschichholz <ricotz ubuntu com>
Date:   Sat May 26 10:10:24 2018 +0200

    buildstage: fix cast

 src/libide/buildsystem/ide-build-stage.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
---
diff --git a/src/libide/buildsystem/ide-build-stage.c b/src/libide/buildsystem/ide-build-stage.c
index e8799f13d..58cb89c72 100644
--- a/src/libide/buildsystem/ide-build-stage.c
+++ b/src/libide/buildsystem/ide-build-stage.c
@@ -538,7 +538,7 @@ ide_build_stage_execute_async (IdeBuildStage       *self,
 
       g_clear_object (&priv->stdout_stream);
 
-      priv->stdout_stream = g_steal_pointer (&stream);
+      priv->stdout_stream = G_OUTPUT_STREAM (g_steal_pointer (&stream));
     }
 
   IDE_BUILD_STAGE_GET_CLASS (self)->execute_async (self, pipeline, cancellable, callback, user_data);


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]