diff options
author | Daniel Rodríguez Troitiño <danielrodriguez@fb.com> | 2022-09-23 16:10:27 -0700 |
---|---|---|
committer | Daniel Rodríguez Troitiño <danielrodriguez@fb.com> | 2022-09-23 16:27:24 -0700 |
commit | 74150a0afa2d945dd498a6f5748cdb996a1bc3d2 (patch) | |
tree | 799d7140d7d933115d64971bdd7976fa00d428e0 /llvm/lib/Object/MachOObjectFile.cpp | |
parent | a707675dbba9ca3ec6e668f86fea2240a85ca171 (diff) | |
download | llvm-74150a0afa2d945dd498a6f5748cdb996a1bc3d2.zip llvm-74150a0afa2d945dd498a6f5748cdb996a1bc3d2.tar.gz llvm-74150a0afa2d945dd498a6f5748cdb996a1bc3d2.tar.bz2 |
[objdump] Fix typo in error message.
Change "inconsistant" for "inconsistent" in the message, the file name
and the test output.
Reviewed By: pete, MaskRay
Differential Revision: https://reviews.llvm.org/D134562
Diffstat (limited to 'llvm/lib/Object/MachOObjectFile.cpp')
-rw-r--r-- | llvm/lib/Object/MachOObjectFile.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Object/MachOObjectFile.cpp b/llvm/lib/Object/MachOObjectFile.cpp index 16a24d1..20ac343 100644 --- a/llvm/lib/Object/MachOObjectFile.cpp +++ b/llvm/lib/Object/MachOObjectFile.cpp @@ -3091,7 +3091,7 @@ void ExportEntry::pushNode(uint64_t offset) { } if(ExportStart + ExportInfoSize != State.Current) { *E = malformedError( - "inconsistant export info size: 0x" + + "inconsistent export info size: 0x" + Twine::utohexstr(ExportInfoSize) + " where actual size was: 0x" + Twine::utohexstr(State.Current - ExportStart) + " in export trie data at node: 0x" + Twine::utohexstr(offset)); |