Correct strange whitespace.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@63927 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/include/llvm-c/lto.h b/include/llvm-c/lto.h
index 74a0703..1d98814 100644
--- a/include/llvm-c/lto.h
+++ b/include/llvm-c/lto.h
@@ -86,7 +86,7 @@
  */
 extern bool
 lto_module_is_object_file_for_target(const char* path, 
-                                            const char* target_triple_prefix);
+                                     const char* target_triple_prefix);
 
 
 /**
diff --git a/tools/lto/LTOModule.cpp b/tools/lto/LTOModule.cpp
index 6331a59..71f3850 100644
--- a/tools/lto/LTOModule.cpp
+++ b/tools/lto/LTOModule.cpp
@@ -108,7 +108,7 @@
 
 
 LTOModule* LTOModule::makeLTOModule(const void* mem, size_t length, 
-                                                        std::string& errMsg)
+                                    std::string& errMsg)
 {
     OwningPtr<MemoryBuffer> buffer(makeBuffer(mem, length));
     if ( !buffer )