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
         {