summaryrefslogtreecommitdiffstats
path: root/lldb/source/Core/ValueObject.cpp
diff options
context:
space:
mode:
authorGreg Clayton <gclayton@apple.com>2010-10-22 02:39:02 +0000
committerGreg Clayton <gclayton@apple.com>2010-10-22 02:39:02 +0000
commit0188eb9a5fe284a06e0fe3e5625291bcab11532e (patch)
tree7d7cb94834ff801db30e816ad621b0e6889ba203 /lldb/source/Core/ValueObject.cpp
parent93bbe6599fd8df582609c29b88ebd31d5a2d8c47 (diff)
downloadbcm5719-llvm-0188eb9a5fe284a06e0fe3e5625291bcab11532e.tar.gz
bcm5719-llvm-0188eb9a5fe284a06e0fe3e5625291bcab11532e.zip
Fixed a error formatting output issue when dumping variables where the error had no space before it and was missing a newline.
llvm-svn: 117086
Diffstat (limited to 'lldb/source/Core/ValueObject.cpp')
-rw-r--r--lldb/source/Core/ValueObject.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Core/ValueObject.cpp b/lldb/source/Core/ValueObject.cpp
index c8c5f3362fe..da613b81e19 100644
--- a/lldb/source/Core/ValueObject.cpp
+++ b/lldb/source/Core/ValueObject.cpp
@@ -975,7 +975,7 @@ ValueObject::DumpValueObject
if (err_cstr)
{
- s.Printf ("error: %s", err_cstr);
+ s.Printf (" %s\n", err_cstr);
}
else
{
OpenPOWER on IntegriCloud