Fix typo in string

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@147654 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Eli Bendersky 2012-01-06 07:49:17 +00:00
parent c36145f19c
commit 1eb189b4b2

View File

@ -451,7 +451,7 @@ bool RuntimeDyldMachO::loadObject(MemoryBuffer *InputBuffer) {
if (!SymtabLCI)
return Error("no symbol table found in object");
if (!SegmentLCI)
return Error("no symbol table found in object");
return Error("no segments found in object");
// Read and register the symbol table data.
InMemoryStruct<macho::SymtabLoadCommand> SymtabLC;