summaryrefslogtreecommitdiffstats
path: root/lldb/tools/lldb-server/lldb-gdbserver.cpp
diff options
context:
space:
mode:
authorBruce Mitchener <bruce.mitchener@gmail.com>2015-06-18 05:27:05 +0000
committerBruce Mitchener <bruce.mitchener@gmail.com>2015-06-18 05:27:05 +0000
commit58ef391f3ef80cc4e4e375b7e2f1f397afd47b90 (patch)
tree5745c92f275d16ef1c8c47b79e523929b3169a36 /lldb/tools/lldb-server/lldb-gdbserver.cpp
parent8b2492f2a0e0b143c4c4f17765901e568af92e68 (diff)
downloadbcm5719-llvm-58ef391f3ef80cc4e4e375b7e2f1f397afd47b90.tar.gz
bcm5719-llvm-58ef391f3ef80cc4e4e375b7e2f1f397afd47b90.zip
Fix a variety of typos.
No functional change. llvm-svn: 239995
Diffstat (limited to 'lldb/tools/lldb-server/lldb-gdbserver.cpp')
-rw-r--r--lldb/tools/lldb-server/lldb-gdbserver.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/tools/lldb-server/lldb-gdbserver.cpp b/lldb/tools/lldb-server/lldb-gdbserver.cpp
index be16eac69dd..a286e3df0de 100644
--- a/lldb/tools/lldb-server/lldb-gdbserver.cpp
+++ b/lldb/tools/lldb-server/lldb-gdbserver.cpp
@@ -219,7 +219,7 @@ handle_attach (GDBRemoteCommunicationServerLLGS &gdb_server, const std::string &
{
assert (!attach_target.empty () && "attach_target cannot be empty");
- // First check if the attach_target is convertable to a long. If so, we'll use it as a pid.
+ // First check if the attach_target is convertible to a long. If so, we'll use it as a pid.
char *end_p = nullptr;
const long int pid = strtol (attach_target.c_str (), &end_p, 10);
@@ -676,7 +676,7 @@ main_gdbserver (int argc, char *argv[])
argc -= 1;
argv += 1;
- // Any arguments left over are for the the program that we need to launch. If there
+ // Any arguments left over are for the program that we need to launch. If there
// are no arguments, then the GDB server will start up and wait for an 'A' packet
// to launch a program, or a vAttach packet to attach to an existing process, unless
// explicitly asked to attach with the --attach={pid|program_name} form.
OpenPOWER on IntegriCloud