[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:38:41 PDT 2021


This revision was landed with ongoing or failed builds.
This revision was automatically updated to reflect the committed changes.
Closed by commit rG4b513b2458d9: [lldb] Correct typo in memory read error (authored by DavidSpickett).

Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D98770/new/

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.331206.patch
Type: text/x-patch
Size: 607 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/lldb-commits/attachments/20210317/20526d50/attachment.bin>


More information about the lldb-commits mailing list