From: David Spickett Date: Wed, 17 Mar 2021 09:43:06 +0000 (+0000) Subject: [lldb] Correct typo in memory read error X-Git-Tag: llvmorg-14-init~12145 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=4b513b2458d93a77ce6c45013ffc3e6838f4645f;p=platform%2Fupstream%2Fllvm.git [lldb] Correct typo in memory read error Reviewed By: teemperor Differential Revision: https://reviews.llvm.org/D98770 --- 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;