From b80279c6db4fc81a02b55bd192a4630fef211920 Mon Sep 17 00:00:00 2001 From: "Darryl L. Miles" Date: Mon, 25 Aug 2025 11:56:38 +0100 Subject: [PATCH] grOGL1.c: HashLookOnly() using X11 Window type a key on LLP64 needs cast --- graphics/grOGL1.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/graphics/grOGL1.c b/graphics/grOGL1.c index ce3b4fac..6b3945b9 100644 --- a/graphics/grOGL1.c +++ b/graphics/grOGL1.c @@ -920,7 +920,7 @@ GrOGLDelete(w) HashEntry *entry; xw = (Window) w->w_grdata; - entry = HashLookOnly(&grOGLWindowTable, (char *)xw); + entry = HashLookOnly(&grOGLWindowTable, (const char *)(intptr_t)xw); HashSetValue(entry,NULL); XDestroyWindow(grXdpy, xw);