Skip to content
Snippets Groups Projects
Commit 2413b9e0 authored by Mathieu Malaterre's avatar Mathieu Malaterre
Browse files

COMP: Fix compilation on MacOSX

parent 720ab012
No related branches found
No related tags found
No related merge requests found
......@@ -144,7 +144,7 @@ LibHandle DynamicLoader::OpenLibrary(const char* libname )
//----------------------------------------------------------------------------
int DynamicLoader::CloseLibrary( LibHandle lib)
{
DYLD_BOOL success = NSUnLinkModule(lib, NSUNLINKMODULE_OPTION_NONE);
bool success = NSUnLinkModule(lib, NSUNLINKMODULE_OPTION_NONE);
return success;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment