From 47a8a5e9fbdcd4cb042b09bb2bb6d462b6815044 Mon Sep 17 00:00:00 2001 From: Ed Maste Date: Sat, 6 Sep 2014 11:29:08 +0000 Subject: [PATCH] Correct copied error message Patch by Remco Verhoef. llvm-svn: 217312 --- lldb/source/Commands/CommandObjectMemory.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lldb/source/Commands/CommandObjectMemory.cpp b/lldb/source/Commands/CommandObjectMemory.cpp index 8144f48a5b4b..486a5eb912af 100644 --- a/lldb/source/Commands/CommandObjectMemory.cpp +++ b/lldb/source/Commands/CommandObjectMemory.cpp @@ -1080,7 +1080,7 @@ protected: lldb::addr_t high_addr = Args::StringToAddress(&m_exe_ctx, command.GetArgumentAtIndex(1),LLDB_INVALID_ADDRESS,&error); if (high_addr == LLDB_INVALID_ADDRESS || error.Fail()) { - result.AppendError("invalid low address"); + result.AppendError("invalid high address"); return false; }