broadway: Use correct type in assignment

The new type propagation for g_object_ref() is raising a compiler
warning for an assignment with a different type.
This commit is contained in:
Emmanuele Bassi 2017-12-21 18:42:26 +00:00
parent 862fd6f4e8
commit f1ef422871

View File

@ -1289,7 +1289,7 @@ handle_incoming_connection (GSocketService *service,
}
else
{
request->connection = g_object_ref (connection);
request->connection = G_IO_STREAM (g_object_ref (connection));
}
in = g_io_stream_get_input_stream (request->connection);