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
This commit is contained in:
Greg Clayton 2010-10-22 02:39:02 +00:00
parent 93bbe6599f
commit 0188eb9a5f
1 changed files with 1 additions and 1 deletions

View File

@ -975,7 +975,7 @@ ValueObject::DumpValueObject
if (err_cstr)
{
s.Printf ("error: %s", err_cstr);
s.Printf (" %s\n", err_cstr);
}
else
{