[Lldb-commits] [lldb] r117086 - /lldb/trunk/source/Core/ValueObject.cpp
Greg Clayton
gclayton at apple.com
Thu Oct 21 19:39:02 PDT 2010
Author: gclayton
Date: Thu Oct 21 21:39:02 2010
New Revision: 117086
URL: http://llvm.org/viewvc/llvm-project?rev=117086&view=rev
Log:
Fixed a error formatting output issue when dumping variables where the error had no space before it and was missing a newline.
Modified:
lldb/trunk/source/Core/ValueObject.cpp
Modified: lldb/trunk/source/Core/ValueObject.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Core/ValueObject.cpp?rev=117086&r1=117085&r2=117086&view=diff
==============================================================================
--- lldb/trunk/source/Core/ValueObject.cpp (original)
+++ lldb/trunk/source/Core/ValueObject.cpp Thu Oct 21 21:39:02 2010
@@ -975,7 +975,7 @@
if (err_cstr)
{
- s.Printf ("error: %s", err_cstr);
+ s.Printf (" %s\n", err_cstr);
}
else
{
More information about the lldb-commits
mailing list