From 50171cf92ee9699f5061b4be1660ecbf67a07507 Mon Sep 17 00:00:00 2001 From: Nishi Date: Sun, 27 Sep 2026 06:37:24 +0900 Subject: [PATCH] fix wayland --- src/backend/wayland/wayland.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/backend/wayland/wayland.c b/src/backend/wayland/wayland.c index d23594bf..de267748 100644 --- a/src/backend/wayland/wayland.c +++ b/src/backend/wayland/wayland.c @@ -1446,8 +1446,7 @@ static MwLLColor MwLLAllocColorImpl(MwLL handle, int r, int g, int b) { return c; } -static void MwLLColorUpdateImpl(MwLL handle, MwLLColor c, int r, int g, int b) { - (void)handle; +static void MwLLColorUpdateImpl(MwLLColor c, int r, int g, int b) { c->common.red = r; c->common.blue = b; c->common.green = g;