diff options
| author | hrydgard <hrydgard@gmail.com> | 2009-02-21 12:07:03 +0000 |
|---|---|---|
| committer | hrydgard <hrydgard@gmail.com> | 2009-02-21 12:07:03 +0000 |
| commit | 28cbd0a6ba531576227580ef7e263d23d704afb4 (patch) | |
| tree | 56bf1b0eae0c6cc4a738ce85ab7b78ca8f653f5d /Source/Core/Common/Src/DynamicLibrary.cpp | |
| parent | 76a78dd60d4eefdb8f1fada8e63bac7b0c4f5a94 (diff) | |
CPlugin had a non-virtual destructor. This fixes that, plus reindents a bunch of code.
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@2332 8ced0084-cf51-0410-be5f-012b33b47a6e
Diffstat (limited to 'Source/Core/Common/Src/DynamicLibrary.cpp')
| -rw-r--r-- | Source/Core/Common/Src/DynamicLibrary.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/Common/Src/DynamicLibrary.cpp b/Source/Core/Common/Src/DynamicLibrary.cpp index f547d84ea1..30c85aabd3 100644 --- a/Source/Core/Common/Src/DynamicLibrary.cpp +++ b/Source/Core/Common/Src/DynamicLibrary.cpp @@ -121,7 +121,7 @@ int DynamicLibrary::Unload() #ifdef _WIN32 retval = FreeLibrary(library); #else - retval = dlclose(library)?0:1; + retval = dlclose(library) ? 0 : 1; #endif if (!retval) |
