diff options
author | Greg Clayton <gclayton@apple.com> | 2012-06-29 21:58:00 +0000 |
---|---|---|
committer | Greg Clayton <gclayton@apple.com> | 2012-06-29 21:58:00 +0000 |
commit | 503cd42259fd10e9788904d78b7dec7306927ca4 (patch) | |
tree | 13554adceb07a8db196a614bdd7b67a7bd809a08 | |
parent | 6fa76dc0e0ccc925492ade31f0d9b28de321ff03 (diff) | |
download | bcm5719-llvm-503cd42259fd10e9788904d78b7dec7306927ca4.tar.gz bcm5719-llvm-503cd42259fd10e9788904d78b7dec7306927ca4.zip |
Spelling fixes.
llvm-svn: 159466
-rw-r--r-- | lldb/tools/debugserver/source/ChangeLog | 2 | ||||
-rw-r--r-- | lldb/tools/debugserver/source/RNBRemote.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/lldb/tools/debugserver/source/ChangeLog b/lldb/tools/debugserver/source/ChangeLog index 2f3843bbc60..851bcf0d955 100644 --- a/lldb/tools/debugserver/source/ChangeLog +++ b/lldb/tools/debugserver/source/ChangeLog @@ -175,7 +175,7 @@ (RNBRemote::GetPacket): Call RNBRemote::HandlePacket_UNIMPLEMENTED() when we don't recognize a packet. (RNBRemote::HandleReceivedPacket): Don't reply to packets we don't - recognize with unimplemented in this fucntion as that should have + recognize with unimplemented in this function as that should have already been done for us in RNBRemote::GetPacket(). 2009-02-10 Greg Clayton <gclayton@apple.com> diff --git a/lldb/tools/debugserver/source/RNBRemote.cpp b/lldb/tools/debugserver/source/RNBRemote.cpp index 14117612ebc..d1c66150d58 100644 --- a/lldb/tools/debugserver/source/RNBRemote.cpp +++ b/lldb/tools/debugserver/source/RNBRemote.cpp @@ -97,7 +97,7 @@ RNBRemote::CreatePacketTable () // Step required to add new packets: // 1 - Add new enumeration to RNBRemote::PacketEnum // 2 - Create a the RNBRemote::HandlePacket_ function if a new function is needed - // 3 - Register the Packet definition with any needed callbacks in this fucntion + // 3 - Register the Packet definition with any needed callbacks in this function // - If no response is needed for a command, then use NULL for the normal callback // - If the packet is not supported while the target is running, use NULL for the async callback // 4 - If the packet is a standard packet (starts with a '$' character |