Eliminate tabs
authorJeff Cohen <jeffc@jolt-lang.org>
Mon, 11 Apr 2005 03:44:22 +0000 (03:44 +0000)
committerJeff Cohen <jeffc@jolt-lang.org>
Mon, 11 Apr 2005 03:44:22 +0000 (03:44 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@21216 91177308-0d34-0410-b5e6-96231b3b80d8

lib/System/Win32/DynamicLibrary.inc
lib/System/Win32/Program.inc

index 2209e592091d8b313ebdcd96ffb05343e33bc173..24b63cca71482f8dce00a1fdd606ad0d871f4886 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);
   }
index 4c520918bd1436bd0adc81ac25c89860bb9256e8..0c1b680e4f185bb153e50e147605d1b0ad35fce8 100644 (file)
@@ -122,7 +122,7 @@ Program::ExecuteAndWait(const Path& path,
 
   for (unsigned i = 0; args[i]; i++) {
     const char *arg = args[i];
-       size_t len = strlen(arg);
+    size_t len = strlen(arg);
     bool needsQuoting = strchr(arg, ' ') != 0;
     if (needsQuoting)
       *p++ = '"';