diff options
author | Bruce Mitchener <bruce.mitchener@gmail.com> | 2014-07-08 18:05:41 +0000 |
---|---|---|
committer | Bruce Mitchener <bruce.mitchener@gmail.com> | 2014-07-08 18:05:41 +0000 |
commit | aaa0ba31a996b189b8985e5d05559c254c05d3f8 (patch) | |
tree | 6ea608bed1677877a10c908ff1806db2b3d5fc5f /lldb/tools/debugserver/source/DNB.cpp | |
parent | c3aba6aafa2c85ef01001fc223b2f988d5e76bfe (diff) | |
download | bcm5719-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.cpp | 6 |
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: |