Skip to content

Commit a750217

Browse files
committed
Fix MSYS2 builds after cleanup
1 parent d697312 commit a750217

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

t-dll.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ inline ivl_dll_t ivl_dlopen(const char *name)
4949

5050
inline void * ivl_dlsym(ivl_dll_t dll, const char *nm)
5151
{
52-
return static_cast<void*>(GetProcAddress((HMODULE)dll, nm));
52+
return reinterpret_cast<void*>(GetProcAddress((HMODULE)dll, nm));
5353
}
5454

5555
inline void ivl_dlclose(ivl_dll_t dll)

0 commit comments

Comments
 (0)