mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-04 09:48:07 +02:00
egl: fix wrong argument. Use loader_data instead of loader
This commit is contained in:
parent
3584a44270
commit
88af76ce94
1 changed files with 1 additions and 1 deletions
|
|
@ -392,7 +392,7 @@ _eglPreloadForEach(const char *search_path,
|
|||
next = strchr(cur, ':');
|
||||
len = (next) ? next - cur : strlen(cur);
|
||||
|
||||
if (!loader(cur, len, loader))
|
||||
if (!loader(cur, len, loader_data))
|
||||
break;
|
||||
|
||||
cur = (next) ? next + 1 : NULL;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue