diff options
author | Greg Clayton <gclayton@apple.com> | 2011-02-09 01:08:52 +0000 |
---|---|---|
committer | Greg Clayton <gclayton@apple.com> | 2011-02-09 01:08:52 +0000 |
commit | 51b1e2d271a4749654c2168aad7b24321bbb2897 (patch) | |
tree | ba30fa1dae5d98f59f4b43af59459e9279bb22da /lldb/source/API/SBInstruction.cpp | |
parent | 7eaacc517bc312d43d511856f359e7bd68c344f1 (diff) | |
download | bcm5719-llvm-51b1e2d271a4749654c2168aad7b24321bbb2897.tar.gz bcm5719-llvm-51b1e2d271a4749654c2168aad7b24321bbb2897.zip |
Use Host::File in lldb_private::StreamFile and other places to cleanup host
layer a bit more.
llvm-svn: 125149
Diffstat (limited to 'lldb/source/API/SBInstruction.cpp')
-rw-r--r-- | lldb/source/API/SBInstruction.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/API/SBInstruction.cpp b/lldb/source/API/SBInstruction.cpp index 01718a3d844..df3a7535cbb 100644 --- a/lldb/source/API/SBInstruction.cpp +++ b/lldb/source/API/SBInstruction.cpp @@ -103,7 +103,7 @@ SBInstruction::Print (FILE *out) if (m_opaque_sp) { - StreamFile out_stream (out); + StreamFile out_stream (out, false); m_opaque_sp->Dump (&out_stream, true, NULL, 0, NULL, false); } } |