From 28cbd0a6ba531576227580ef7e263d23d704afb4 Mon Sep 17 00:00:00 2001 From: hrydgard Date: Sat, 21 Feb 2009 12:07:03 +0000 Subject: 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 --- Source/Core/Common/Src/DynamicLibrary.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Source/Core/Common/Src/DynamicLibrary.cpp') 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) -- cgit v1.2.3