Skip to content

Commit 37cf67a

Browse files
committed
Fix build for glib < 2.32
G_SOURCE_REMOVE was introduced in 2.32
1 parent 37cc8a1 commit 37cf67a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

gtk/spice-session.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -1754,7 +1754,7 @@ static gboolean session_disconnect_idle(SpiceSession *self)
17541754

17551755
g_object_unref(self);
17561756

1757-
return G_SOURCE_REMOVE;
1757+
return FALSE;
17581758
}
17591759

17601760
/**

0 commit comments

Comments
 (0)