diff options
author | David Spickett <david.spickett@linaro.org> | 2021-03-17 09:43:06 +0000 |
---|---|---|
committer | David Spickett <david.spickett@linaro.org> | 2021-03-17 10:38:31 +0000 |
commit | 4b513b2458d93a77ce6c45013ffc3e6838f4645f (patch) | |
tree | 16c7707a3ba7de1dbf734b497c57ce47f14df4ba | |
parent | 70251759a29830a2c0aca146d91bbe65e0f1df0c (diff) | |
download | llvm-4b513b2458d93a77ce6c45013ffc3e6838f4645f.zip llvm-4b513b2458d93a77ce6c45013ffc3e6838f4645f.tar.gz llvm-4b513b2458d93a77ce6c45013ffc3e6838f4645f.tar.bz2 |
[lldb] Correct typo in memory read error
Reviewed By: teemperor
Differential Revision: https://reviews.llvm.org/D98770
-rw-r--r-- | lldb/source/Commands/CommandObjectMemory.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Commands/CommandObjectMemory.cpp b/lldb/source/Commands/CommandObjectMemory.cpp index 2aac492..3e7f67f 100644 --- a/lldb/source/Commands/CommandObjectMemory.cpp +++ b/lldb/source/Commands/CommandObjectMemory.cpp @@ -608,7 +608,7 @@ protected: } 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; |