Minor style fixes from review.
[oota-llvm.git] / tools / llvm-ld / llvm-ld.cpp
index d96494ad330fa6e277dc6e9717bb044a911757e0..82cf674724255fd2d426fe95756c97c62a3d9d2e 100644 (file)
@@ -326,10 +326,10 @@ static int GenerateNative(const std::string &OutputFilename,
   for (unsigned index = 0; index < LinkItems.size(); index++)
     if (LinkItems[index].first != "crtend") {
       if (LinkItems[index].second) {
-       std::string lib_name = "-l" + LinkItems[index].first;
-       args.push_back(lib_name.c_str());
+        std::string lib_name = "-l" + LinkItems[index].first;
+        args.push_back(lib_name.c_str());
       } else
-       args.push_back(LinkItems[index].first.c_str());
+        args.push_back(LinkItems[index].first.c_str());
     }
 
   args.push_back(0);