[Lldb-commits] [PATCH] D98770: [lldb] Correct typo in memory read error
David Spickett via Phabricator via lldb-commits
lldb-commits at lists.llvm.org
Wed Mar 17 03:32:58 PDT 2021
DavidSpickett created this revision.
DavidSpickett requested review of this revision.
Herald added a project: LLDB.
Herald added a subscriber: lldb-commits.
Repository:
rG LLVM Github Monorepo
https://reviews.llvm.org/D98770
Files:
lldb/source/Commands/CommandObjectMemory.cpp
Index: lldb/source/Commands/CommandObjectMemory.cpp
===================================================================
--- lldb/source/Commands/CommandObjectMemory.cpp
+++ lldb/source/Commands/CommandObjectMemory.cpp
@@ -608,7 +608,7 @@
} 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;
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D98770.331205.patch
Type: text/x-patch
Size: 607 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/lldb-commits/attachments/20210317/8bde1bf8/attachment.bin>
More information about the lldb-commits
mailing list