commit | 0188eb9a5fe284a06e0fe3e5625291bcab11532e | [log] [tgz] |
---|---|---|
author | Greg Clayton <gclayton@apple.com> | Fri Oct 22 02:39:02 2010 +0000 |
committer | Greg Clayton <gclayton@apple.com> | Fri Oct 22 02:39:02 2010 +0000 |
tree | 7d7cb94834ff801db30e816ad621b0e6889ba203 | |
parent | 93bbe6599fd8df582609c29b88ebd31d5a2d8c47 [diff] [blame] |
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
diff --git a/lldb/source/Core/ValueObject.cpp b/lldb/source/Core/ValueObject.cpp index c8c5f33..da613b8 100644 --- a/lldb/source/Core/ValueObject.cpp +++ b/lldb/source/Core/ValueObject.cpp
@@ -975,7 +975,7 @@ if (err_cstr) { - s.Printf ("error: %s", err_cstr); + s.Printf (" %s\n", err_cstr); } else {