forked from OSchip/llvm-project
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:
parent
93bbe6599f
commit
0188eb9a5f
|
@ -975,7 +975,7 @@ ValueObject::DumpValueObject
|
|||
|
||||
if (err_cstr)
|
||||
{
|
||||
s.Printf ("error: %s", err_cstr);
|
||||
s.Printf (" %s\n", err_cstr);
|
||||
}
|
||||
else
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue