[client,wayland] fix const correctness

This commit is contained in:
akallabeth 2024-05-23 09:30:33 +02:00
parent d2b6771c74
commit 67818bddb3
No known key found for this signature in database
GPG Key ID: A49454A3FC909FD5

View File

@ -587,7 +587,7 @@ static void wlf_client_free(freerdp* instance, rdpContext* context)
DeleteCriticalSection(&wlf->critical);
}
static void* uwac_event_clone(const void* val)
static void* uwac_event_clone(void* val)
{
UwacEvent* copy;
UwacEvent* ev = (UwacEvent*)val;