Fix indentation.
authorJeff Cohen <jeffc@jolt-lang.org>
Sun, 29 Jan 2006 22:02:52 +0000 (22:02 +0000)
committerJeff Cohen <jeffc@jolt-lang.org>
Sun, 29 Jan 2006 22:02:52 +0000 (22:02 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@25795 91177308-0d34-0410-b5e6-96231b3b80d8

lib/System/Win32/DynamicLibrary.inc

index 12ea8ec4fb25f6a514b1ec55a40ed4cfa7076613..1492138682f9f2bf9e61422f8667d5df10b01d2b 100644 (file)
@@ -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);
   }