aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/Object/Archive.cpp
diff options
context:
space:
mode:
authorNico Weber <thakis@chromium.org>2025-09-20 13:49:40 -0400
committerGitHub <noreply@github.com>2025-09-20 13:49:40 -0400
commitf847c2a0facdee0b9792ddb2f8e044705ba50276 (patch)
tree3773cf90af612a47f30c314c9bf93b0343848a49 /llvm/lib/Object/Archive.cpp
parent012680faf4c63a9bd432aa92fa0da97981793ac3 (diff)
downloadllvm-f847c2a0facdee0b9792ddb2f8e044705ba50276.zip
llvm-f847c2a0facdee0b9792ddb2f8e044705ba50276.tar.gz
llvm-f847c2a0facdee0b9792ddb2f8e044705ba50276.tar.bz2
[Object] Add a missing space to a diagnostic (#159826)
Follow-up to https://reviews.llvm.org/D46527
Diffstat (limited to 'llvm/lib/Object/Archive.cpp')
-rw-r--r--llvm/lib/Object/Archive.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Object/Archive.cpp b/llvm/lib/Object/Archive.cpp
index 753f805..861c284 100644
--- a/llvm/lib/Object/Archive.cpp
+++ b/llvm/lib/Object/Archive.cpp
@@ -307,7 +307,7 @@ Expected<StringRef> 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);
}