mirror of
https://gitlab.freedesktop.org/monado/monado.git
synced 2025-01-01 12:46:12 +00:00
ipc: Properly cast assignment
This commit is contained in:
parent
6450cba854
commit
9b3f9baff3
|
@ -239,7 +239,7 @@ ipc_server_client_destroy_compositor(volatile struct ipc_client_state *ics)
|
|||
void *
|
||||
ipc_server_client_thread(void *_ics)
|
||||
{
|
||||
volatile struct ipc_client_state *ics = _ics;
|
||||
volatile struct ipc_client_state *ics = (volatile struct ipc_client_state *)_ics;
|
||||
|
||||
client_loop(ics);
|
||||
|
||||
|
|
Loading…
Reference in a new issue