[Lldb-commits] [lldb] r173519 - /lldb/trunk/source/Commands/CommandObjectMemory.cpp

Jim Ingham jingham at apple.com
Fri Jan 25 15:05:01 PST 2013


Author: jingham
Date: Fri Jan 25 17:05:01 2013
New Revision: 173519

URL: http://llvm.org/viewvc/llvm-project?rev=173519&view=rev
Log:
Missing newline in a warning message.

Modified:
    lldb/trunk/source/Commands/CommandObjectMemory.cpp

Modified: lldb/trunk/source/Commands/CommandObjectMemory.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Commands/CommandObjectMemory.cpp?rev=173519&r1=173518&r2=173519&view=diff
==============================================================================
--- lldb/trunk/source/Commands/CommandObjectMemory.cpp (original)
+++ lldb/trunk/source/Commands/CommandObjectMemory.cpp Fri Jan 25 17:05:01 2013
@@ -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
         {





More information about the lldb-commits mailing list