diff options
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: |