Skip to content

Commit f847c2a

Browse files
authored
[Object] Add a missing space to a diagnostic (#159826)
Follow-up to https://reviews.llvm.org/D46527
1 parent 012680f commit f847c2a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

llvm/lib/Object/Archive.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -307,7 +307,7 @@ Expected<StringRef> ArchiveMemberHeader::getName(uint64_t Size) const {
307307
if (End == StringRef::npos || End < 1 ||
308308
Parent->getStringTable()[End - 1] != '/') {
309309
return malformedError("string table at long name offset " +
310-
Twine(StringOffset) + "not terminated");
310+
Twine(StringOffset) + " not terminated");
311311
}
312312
return Parent->getStringTable().slice(StringOffset, End - 1);
313313
}

0 commit comments

Comments
 (0)