From 5da2bc22badde8748a71b1e8ad1ef0bd8e2ce386 Mon Sep 17 00:00:00 2001 From: Lawrence D'Anna Date: Wed, 9 Oct 2019 21:50:52 +0000 Subject: remove a smattering of isolated, unnecessary uses of FILE* Summary: There a a few call sites that use FILE* which are easy to fix without disrupting anything else. Reviewers: JDevlieghere, jasonmolenda, labath Reviewed By: JDevlieghere, labath Subscribers: lldb-commits Tags: #lldb Differential Revision: https://reviews.llvm.org/D68444 llvm-svn: 374239 --- lldb/source/Expression/REPL.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lldb/source/Expression/REPL.cpp') diff --git a/lldb/source/Expression/REPL.cpp b/lldb/source/Expression/REPL.cpp index 78e46881023..4f81ee3e56d 100644 --- a/lldb/source/Expression/REPL.cpp +++ b/lldb/source/Expression/REPL.cpp @@ -423,7 +423,7 @@ void REPL::IOHandlerInputComplete(IOHandler &io_handler, std::string &code) { .SetBaseLineNumber(m_code.GetSize() + 1); } if (extra_line) { - fprintf(output_sp->GetFile().GetStream(), "\n"); + output_sp->Printf("\n"); } } } -- cgit v1.2.3