x11-libs/libXaw3dXft: remove unused patch(es)

Signed-off-by: Michael Mair-Keimberger <mm1ke@gentoo.org>
This commit is contained in:
Michael Mair-Keimberger 2025-11-19 18:29:48 +01:00
parent 4fcc1789d3
commit 415245a4d0
No known key found for this signature in database
GPG Key ID: 03B489CBE4B76101

View File

@ -1,17 +0,0 @@
https://bugs.gentoo.org/919239
Fix compilation with gcc 14 [-Wincompatible-pointer-types]
buffer_return is a char* cast to wchar_t* at call site.
--- a/src/XawIm.c
+++ b/src/XawIm.c
@@ -1522,7 +1522,7 @@
if ((vw = SearchVendorShell(inwidg)) && (ve = GetExtPart(vw)) &&
ve->im.xim && (p = GetIcTableShared(inwidg, ve)) && p->xic) {
if (_Xaw3dXft->encoding == -1)
- ret = Xutf8LookupString (p->xic, event, buffer_return, bytes_buffer, keysym_return, status_return);
+ ret = Xutf8LookupString (p->xic, event, (char*)buffer_return, bytes_buffer, keysym_return, status_return);
else
ret = XwcLookupString(p->xic, event, buffer_return, bytes_buffer,
keysym_return, status_return);