forked from AuroraMiddleware/gtk
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:
parent
862fd6f4e8
commit
f1ef422871
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user