This is an automated email from the git hooks/post-receive script.

git pushed a commit to branch devs/dimmus/meson
in repository efl.

View the commit online.

commit b97f21277025a35c2faf7e24028b0495bd059256
Author: Carsten Haitzler <ras...@rasterman.com>
AuthorDate: Sun May 4 09:29:41 2025 +0100

    evas - gl - fix evas gl full builds after gcc 15 changes
---
 src/modules/evas/engines/gl_x11/evas_engine.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/modules/evas/engines/gl_x11/evas_engine.c b/src/modules/evas/engines/gl_x11/evas_engine.c
index 86f5064cf3..8926c6afea 100644
--- a/src/modules/evas/engines/gl_x11/evas_engine.c
+++ b/src/modules/evas/engines/gl_x11/evas_engine.c
@@ -1382,9 +1382,9 @@ eng_gl_symbols(Outbuf *ob)
 #define FINDSYM(dst, sym, ext) do { \
    if (!dst) { \
       if (_has_ext(exts, ext) && glsym_glXGetProcAddress) \
-        dst = (typ) glsym_glXGetProcAddress(sym); \
+        dst = glsym_glXGetProcAddress(sym); \
       if (!dst) \
-        dst = (typ) dlsym(RTLD_DEFAULT, sym); \
+        dst = dlsym(RTLD_DEFAULT, sym); \
    }} while (0)
 
    // Find GLX extensions

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.

Reply via email to