mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-06-04 11:14:48 +02:00
25 lines
760 B
Diff
25 lines
760 B
Diff
From 67818bddb31900cdf3acb26cb0b673cc90b71cc9 Mon Sep 17 00:00:00 2001
|
|
From: akallabeth <akallabeth@posteo.net>
|
|
Date: Thu, 23 May 2024 09:30:33 +0200
|
|
Subject: [PATCH 6/8] [client,wayland] fix const correctness
|
|
|
|
---
|
|
client/Wayland/wlfreerdp.c | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/client/Wayland/wlfreerdp.c b/client/Wayland/wlfreerdp.c
|
|
index 65e29bc51..5988aed6b 100644
|
|
--- a/client/Wayland/wlfreerdp.c
|
|
+++ b/client/Wayland/wlfreerdp.c
|
|
@@ -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;
|
|
--
|
|
2.46.0
|
|
|