Mach-O: Tweak field name.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@121465 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/tools/macho-dump/macho-dump.cpp b/tools/macho-dump/macho-dump.cpp
index 982443a..f4854be 100644
--- a/tools/macho-dump/macho-dump.cpp
+++ b/tools/macho-dump/macho-dump.cpp
@@ -288,7 +288,7 @@
   if (!DLC)
     return Error("unable to read segment load command");
 
-  outs() << "  ('ilocalsym', " << DLC->LocalSymbolIndex << ")\n";
+  outs() << "  ('ilocalsym', " << DLC->LocalSymbolsIndex << ")\n";
   outs() << "  ('nlocalsym', " << DLC->NumLocalSymbols << ")\n";
   outs() << "  ('iextdefsym', " << DLC->ExternalSymbolsIndex << ")\n";
   outs() << "  ('nextdefsym', " << DLC->NumExternalSymbols << ")\n";