Fix MSYS2 builds after cleanup

This commit is contained in:
Cary R 2025-10-25 11:09:39 -07:00
parent d697312cf8
commit a7502173d3
1 changed files with 1 additions and 1 deletions

View File

@ -49,7 +49,7 @@ inline ivl_dll_t ivl_dlopen(const char *name)
inline void * ivl_dlsym(ivl_dll_t dll, const char *nm)
{
return static_cast<void*>(GetProcAddress((HMODULE)dll, nm));
return reinterpret_cast<void*>(GetProcAddress((HMODULE)dll, nm));
}
inline void ivl_dlclose(ivl_dll_t dll)