mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-12-16 08:08:01 +00:00
Fix indentation.
llvm-svn: 25795
This commit is contained in:
parent
414a73d6f6
commit
f8d118706f
@ -92,12 +92,12 @@ void DynamicLibrary::LoadLibraryPermanently(const char* filename) {
|
||||
if (filename) {
|
||||
HMODULE a_handle = LoadLibrary(filename);
|
||||
|
||||
if (a_handle == 0)
|
||||
ThrowError(std::string(filename) + ": Can't open : ");
|
||||
if (a_handle == 0)
|
||||
ThrowError(std::string(filename) + ": Can't open : ");
|
||||
|
||||
OpenedHandles.push_back(a_handle);
|
||||
OpenedHandles.push_back(a_handle);
|
||||
} else {
|
||||
// When no file is specified, enumerate all DLLs and EXEs in the
|
||||
// When no file is specified, enumerate all DLLs and EXEs in the
|
||||
// process.
|
||||
EnumerateLoadedModules(GetCurrentProcess(), ELM_Callback, 0);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user