[Lldb-commits] [lldb] r217312 - Correct copied error message

Ed Maste emaste at freebsd.org
Sat Sep 6 04:29:09 PDT 2014


Author: emaste
Date: Sat Sep  6 06:29:08 2014
New Revision: 217312

URL: http://llvm.org/viewvc/llvm-project?rev=217312&view=rev
Log:
Correct copied error message

Patch by Remco Verhoef.

Modified:
    lldb/trunk/source/Commands/CommandObjectMemory.cpp

Modified: lldb/trunk/source/Commands/CommandObjectMemory.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Commands/CommandObjectMemory.cpp?rev=217312&r1=217311&r2=217312&view=diff
==============================================================================
--- lldb/trunk/source/Commands/CommandObjectMemory.cpp (original)
+++ lldb/trunk/source/Commands/CommandObjectMemory.cpp Sat Sep  6 06:29:08 2014
@@ -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;
       }
 





More information about the lldb-commits mailing list