We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 012680f commit f847c2aCopy full SHA for f847c2a
llvm/lib/Object/Archive.cpp
@@ -307,7 +307,7 @@ Expected<StringRef> ArchiveMemberHeader::getName(uint64_t Size) const {
307
if (End == StringRef::npos || End < 1 ||
308
Parent->getStringTable()[End - 1] != '/') {
309
return malformedError("string table at long name offset " +
310
- Twine(StringOffset) + "not terminated");
+ Twine(StringOffset) + " not terminated");
311
}
312
return Parent->getStringTable().slice(StringOffset, End - 1);
313
0 commit comments