[Spice-commits] gtk/spice-session.c
Marc-André Lureau
elmarco at kemper.freedesktop.org
Tue Dec 2 16:37:36 PST 2014
gtk/spice-session.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
New commits:
commit 37cf67a70c77f94029e7da958a794821dd4e972c
Author: Marc-André Lureau <marcandre.lureau at gmail.com>
Date: Wed Dec 3 01:36:31 2014 +0100
Fix build for glib < 2.32
G_SOURCE_REMOVE was introduced in 2.32
diff --git a/gtk/spice-session.c b/gtk/spice-session.c
index ba4ec1d..c80c8dc 100644
--- a/gtk/spice-session.c
+++ b/gtk/spice-session.c
@@ -1754,7 +1754,7 @@ static gboolean session_disconnect_idle(SpiceSession *self)
g_object_unref(self);
- return G_SOURCE_REMOVE;
+ return FALSE;
}
/**
More information about the Spice-commits
mailing list