From b47576420fe269e9cabbf0f30535eaf57e29e371 Mon Sep 17 00:00:00 2001 From: clhin <92746164+clhin@users.noreply.github.com> Date: Mon, 3 Nov 2025 12:54:16 -0600 Subject: [PATCH] window.c: const correctness --- dix/window.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dix/window.c b/dix/window.c index ad5bbdd7df..37eff117cb 100644 --- a/dix/window.c +++ b/dix/window.c @@ -154,8 +154,8 @@ Equipment Corporation. Bool bgNoneRoot = FALSE; -static unsigned char _back_lsb[4] = { 0x88, 0x22, 0x44, 0x11 }; -static unsigned char _back_msb[4] = { 0x11, 0x44, 0x22, 0x88 }; +static const unsigned char _back_lsb[4] = { 0x88, 0x22, 0x44, 0x11 }; +static const unsigned char _back_msb[4] = { 0x11, 0x44, 0x22, 0x88 }; static Bool WindowParentHasDeviceCursor(WindowPtr pWin, DeviceIntPtr pDev, CursorPtr pCurs);