diff --git a/llvm/lib/Object/Archive.cpp b/llvm/lib/Object/Archive.cpp index 753f805824cea..861c284253f7a 100644 --- a/llvm/lib/Object/Archive.cpp +++ b/llvm/lib/Object/Archive.cpp @@ -307,7 +307,7 @@ Expected ArchiveMemberHeader::getName(uint64_t Size) const { if (End == StringRef::npos || End < 1 || Parent->getStringTable()[End - 1] != '/') { return malformedError("string table at long name offset " + - Twine(StringOffset) + "not terminated"); + Twine(StringOffset) + " not terminated"); } return Parent->getStringTable().slice(StringOffset, End - 1); }