Fixed dlsym.

This commit is contained in:
bkaradzic
2013-07-13 23:15:34 -07:00
parent 7c33ae8e58
commit 7852041e78

View File

@@ -65,7 +65,7 @@ namespace bx
#if BX_PLATFORM_WINDOWS
return (void*)GetProcAddress( (HMODULE)_handle, _symbol);
#else
return dlsym(_handle, _symbol);
return ::dlsym(_handle, _symbol);
#endif // BX_PLATFORM_
}