The open source OpenXR runtime
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

ipc: Properly cast assignment

+1 -1
+1 -1
src/xrt/ipc/server/ipc_server_per_client_thread.c
··· 239 239 void * 240 240 ipc_server_client_thread(void *_ics) 241 241 { 242 - volatile struct ipc_client_state *ics = _ics; 242 + volatile struct ipc_client_state *ics = (volatile struct ipc_client_state *)_ics; 243 243 244 244 client_loop(ics); 245 245