Eliminate tabs


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@21216 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/System/Win32/DynamicLibrary.inc b/lib/System/Win32/DynamicLibrary.inc
index 2209e59..24b63cc 100644
--- a/lib/System/Win32/DynamicLibrary.inc
+++ b/lib/System/Win32/DynamicLibrary.inc
@@ -92,12 +92,12 @@
   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);
   }
diff --git a/lib/System/Win32/Program.inc b/lib/System/Win32/Program.inc
index 4c52091..0c1b680 100644
--- a/lib/System/Win32/Program.inc
+++ b/lib/System/Win32/Program.inc
@@ -122,7 +122,7 @@
 
   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++ = '"';