diff options
author | Jim Ingham <jingham@apple.com> | 2013-01-25 23:05:01 +0000 |
---|---|---|
committer | Jim Ingham <jingham@apple.com> | 2013-01-25 23:05:01 +0000 |
commit | 9d8dd4bf52ee59c3e2ab3f912ca2dbe8a882d5c5 (patch) | |
tree | c3842d71519faaeb6aa61fe5d8a5d4243f491460 | |
parent | 81d68536384585b8f6dcf2ebb7b50c57cbedd874 (diff) | |
download | bcm5719-llvm-9d8dd4bf52ee59c3e2ab3f912ca2dbe8a882d5c5.tar.gz bcm5719-llvm-9d8dd4bf52ee59c3e2ab3f912ca2dbe8a882d5c5.zip |
Missing newline in a warning message.
llvm-svn: 173519
-rw-r--r-- | lldb/source/Commands/CommandObjectMemory.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Commands/CommandObjectMemory.cpp b/lldb/source/Commands/CommandObjectMemory.cpp index e77dc116e8d..26ec9ec3855 100644 --- a/lldb/source/Commands/CommandObjectMemory.cpp +++ b/lldb/source/Commands/CommandObjectMemory.cpp @@ -674,7 +674,7 @@ protected: } if (bytes_read < total_byte_size) - result.AppendWarningWithFormat("Not all bytes (%lu/%lu) were able to be read from 0x%" PRIx64 ".", bytes_read, total_byte_size, addr); + result.AppendWarningWithFormat("Not all bytes (%lu/%lu) were able to be read from 0x%" PRIx64 ".\n", bytes_read, total_byte_size, addr); } else { |