From 9d8dd4bf52ee59c3e2ab3f912ca2dbe8a882d5c5 Mon Sep 17 00:00:00 2001 From: Jim Ingham Date: Fri, 25 Jan 2013 23:05:01 +0000 Subject: [PATCH] Missing newline in a warning message. llvm-svn: 173519 --- lldb/source/Commands/CommandObjectMemory.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lldb/source/Commands/CommandObjectMemory.cpp b/lldb/source/Commands/CommandObjectMemory.cpp index e77dc11..26ec9ec 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 { -- 2.7.4