[COFF] Fix a block with incorrect indentation. NFC.

git-svn-id: https://llvm.org/svn/llvm-project/lld/trunk@342446 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/COFF/SymbolTable.cpp b/COFF/SymbolTable.cpp
index a64267f..b27bc3d 100644
--- a/COFF/SymbolTable.cpp
+++ b/COFF/SymbolTable.cpp
@@ -179,9 +179,9 @@
   if (Refptr && Refptr->getChunk()->getSize() == PtrSize) {
     SectionChunk *SC = dyn_cast_or_null<SectionChunk>(Refptr->getChunk());
     if (SC && SC->Relocs.size() == 1 && *SC->symbols().begin() == Sym) {
-        log("Replacing .refptr." + Name + " with " + Imp->getName());
-        Refptr->getChunk()->Live = false;
-        Refptr->replaceKeepingName(Imp, sizeof(DefinedImportData));
+      log("Replacing .refptr." + Name + " with " + Imp->getName());
+      Refptr->getChunk()->Live = false;
+      Refptr->replaceKeepingName(Imp, sizeof(DefinedImportData));
     }
   }
   return true;