[Lldb-commits] [lldb] 4b513b2 - [lldb] Correct typo in memory read error
David Spickett via lldb-commits
lldb-commits at lists.llvm.org
Wed Mar 17 03:38:39 PDT 2021
Author: David Spickett
Date: 2021-03-17T10:38:31Z
New Revision: 4b513b2458d93a77ce6c45013ffc3e6838f4645f
URL: https://github.com/llvm/llvm-project/commit/4b513b2458d93a77ce6c45013ffc3e6838f4645f
DIFF: https://github.com/llvm/llvm-project/commit/4b513b2458d93a77ce6c45013ffc3e6838f4645f.diff
LOG: [lldb] Correct typo in memory read error
Reviewed By: teemperor
Differential Revision: https://reviews.llvm.org/D98770
Added:
Modified:
lldb/source/Commands/CommandObjectMemory.cpp
Removed:
################################################################################
diff --git a/lldb/source/Commands/CommandObjectMemory.cpp b/lldb/source/Commands/CommandObjectMemory.cpp
index 2aac4920a73b..3e7f67fcbc1f 100644
--- a/lldb/source/Commands/CommandObjectMemory.cpp
+++ b/lldb/source/Commands/CommandObjectMemory.cpp
@@ -608,7 +608,7 @@ class CommandObjectMemoryRead : public CommandObjectParsed {
} else if (end_addr <= addr) {
result.AppendErrorWithFormat(
"end address (0x%" PRIx64
- ") must be greater that the start address (0x%" PRIx64 ").\n",
+ ") must be greater than the start address (0x%" PRIx64 ").\n",
end_addr, addr);
result.SetStatus(eReturnStatusFailed);
return false;
More information about the lldb-commits
mailing list