mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-24 06:39:46 -06:00
A few compiler warnings.
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@6975 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
@ -81,8 +81,7 @@ int DynamicLibrary::Load(const char* filename)
|
||||
// RTLD_LOCAL: don't resolve symbols for other libraries
|
||||
library = dlopen(filename, RTLD_NOW | RTLD_LOCAL);
|
||||
#else
|
||||
library = RTLD_SELF;
|
||||
return 1;
|
||||
library = dlopen(NULL, RTLD_LAZY);
|
||||
#endif
|
||||
|
||||
DEBUG_LOG(COMMON, "DL: LoadLibrary: %s(%p)", filename, library);
|
||||
@ -120,10 +119,8 @@ int DynamicLibrary::Unload()
|
||||
library_file.c_str(), library);
|
||||
#ifdef _WIN32
|
||||
retval = FreeLibrary(library);
|
||||
#elif defined __linux__
|
||||
retval = dlclose(library) ? 0 : 1;
|
||||
#else
|
||||
return 1;
|
||||
retval = dlclose(library) ? 0 : 1;
|
||||
#endif
|
||||
|
||||
if (! retval) {
|
||||
|
Reference in New Issue
Block a user