diff options
Diffstat (limited to 'llvm/tools/llvm-objcopy/ELF/Object.cpp')
-rw-r--r-- | llvm/tools/llvm-objcopy/ELF/Object.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/tools/llvm-objcopy/ELF/Object.cpp b/llvm/tools/llvm-objcopy/ELF/Object.cpp index 659e12b..3b4152a 100644 --- a/llvm/tools/llvm-objcopy/ELF/Object.cpp +++ b/llvm/tools/llvm-objcopy/ELF/Object.cpp @@ -2156,7 +2156,7 @@ Error Object::updateSection(StringRef Name, ArrayRef<uint8_t> Data) { if (!OldSec->hasContents()) return createStringError( errc::invalid_argument, - "section '%s' can't be updated because it does not have contents", + "section '%s' cannot be updated because it does not have contents", Name.str().c_str()); if (Data.size() > OldSec->Size && OldSec->ParentSegment) |