Fix a couple of error message typos.
llvm-svn: 183145
diff --git a/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp b/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp
index fb539b1..9123804 100644
--- a/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp
+++ b/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp
@@ -1954,7 +1954,7 @@
}
else
{
- error.SetErrorStringWithFormat("failed to sent packet: '%s'", packet);
+ error.SetErrorStringWithFormat("failed to send packet: '%s'", packet);
}
return 0;
}
@@ -1990,7 +1990,7 @@
}
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;
}