summaryrefslogtreecommitdiffstats
path: root/lldb/tools/debugserver/source/DNB.cpp
diff options
context:
space:
mode:
authorBruce Mitchener <bruce.mitchener@gmail.com>2014-07-08 18:05:41 +0000
committerBruce Mitchener <bruce.mitchener@gmail.com>2014-07-08 18:05:41 +0000
commitaaa0ba31a996b189b8985e5d05559c254c05d3f8 (patch)
tree6ea608bed1677877a10c908ff1806db2b3d5fc5f /lldb/tools/debugserver/source/DNB.cpp
parentc3aba6aafa2c85ef01001fc223b2f988d5e76bfe (diff)
downloadbcm5719-llvm-aaa0ba31a996b189b8985e5d05559c254c05d3f8.tar.gz
bcm5719-llvm-aaa0ba31a996b189b8985e5d05559c254c05d3f8.zip
Fix typos.
llvm-svn: 212553
Diffstat (limited to 'lldb/tools/debugserver/source/DNB.cpp')
-rw-r--r--lldb/tools/debugserver/source/DNB.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/lldb/tools/debugserver/source/DNB.cpp b/lldb/tools/debugserver/source/DNB.cpp
index 8380752f54e..4114aac4de2 100644
--- a/lldb/tools/debugserver/source/DNB.cpp
+++ b/lldb/tools/debugserver/source/DNB.cpp
@@ -321,7 +321,7 @@ nub_process_t
DNBProcessLaunch (const char *path,
char const *argv[],
const char *envp[],
- const char *working_directory, // NULL => dont' change, non-NULL => set working directory for inferior to this
+ const char *working_directory, // NULL => don't change, non-NULL => set working directory for inferior to this
const char *stdin_path,
const char *stdout_path,
const char *stderr_path,
@@ -1560,13 +1560,13 @@ DNBPrintf (nub_process_t pid, nub_thread_t tid, nub_addr_t base_addr, FILE *file
case 'a': // Print the current address
++f;
fprintf_format += "ll";
- fprintf_format += *f; // actual format to show address with folows the 'a' ("%_ax")
+ fprintf_format += *f; // actual format to show address with follows the 'a' ("%_ax")
fprintf (file, fprintf_format.c_str(), addr);
break;
case 'o': // offset from base address
++f;
fprintf_format += "ll";
- fprintf_format += *f; // actual format to show address with folows the 'a' ("%_ox")
+ fprintf_format += *f; // actual format to show address with follows the 'a' ("%_ox")
fprintf(file, fprintf_format.c_str(), addr - base_addr);
break;
default:
OpenPOWER on IntegriCloud