Use Host::File in lldb_private::StreamFile and other places to cleanup host
layer a bit more.



git-svn-id: https://llvm.org/svn/llvm-project/llvdb/trunk@125149 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/source/API/SBInstruction.cpp b/source/API/SBInstruction.cpp
index 01718a3..df3a753 100644
--- a/source/API/SBInstruction.cpp
+++ b/source/API/SBInstruction.cpp
@@ -103,7 +103,7 @@
 
     if (m_opaque_sp)
     {
-        StreamFile out_stream (out);
+        StreamFile out_stream (out, false);
         m_opaque_sp->Dump (&out_stream, true, NULL, 0, NULL, false);
     }
 }