Fix a couple of error message typos.

llvm-svn: 183145
This commit is contained in:
Jim Ingham
2013-06-03 19:34:01 +00:00
parent 31edb51a4f
commit 35579dde40

View File

@@ -1954,7 +1954,7 @@ ProcessGDBRemote::DoReadMemory (addr_t addr, void *buf, size_t size, Error &erro
}
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 addr, const void *buf, size_t size, Erro
}
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;
}