[Lldb-commits] [lldb] r183145 - Fix a couple of error message typos.

Jim Ingham jingham at apple.com
Mon Jun 3 12:34:02 PDT 2013


Author: jingham
Date: Mon Jun  3 14:34:01 2013
New Revision: 183145

URL: http://llvm.org/viewvc/llvm-project?rev=183145&view=rev
Log:
Fix a couple of error message typos.

Modified:
    lldb/trunk/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp

Modified: lldb/trunk/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp?rev=183145&r1=183144&r2=183145&view=diff
==============================================================================
--- lldb/trunk/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp (original)
+++ lldb/trunk/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp Mon Jun  3 14:34:01 2013
@@ -1954,7 +1954,7 @@ ProcessGDBRemote::DoReadMemory (addr_t a
     }
     else
     {
-        error.SetErrorStringWithFormat("failed to sent packet: '%s'", packet);
+        error.SetErrorStringWithFormat("failed to send packet: '%s'", packet);
     }
     return 0;
 }
@@ -1990,7 +1990,7 @@ ProcessGDBRemote::DoWriteMemory (addr_t
     }
     else
     {
-        error.SetErrorStringWithFormat("failed to sent packet: '%s'", packet.GetString().c_str());
+        error.SetErrorStringWithFormat("failed to send packet: '%s'", packet.GetString().c_str());
     }
     return 0;
 }





More information about the lldb-commits mailing list