Skip to content

Commit b0a76b0

Browse files
committed
[lldb] Fix the Windows build after D121536
1 parent 3b61587 commit b0a76b0

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

lldb/source/Core/IOHandler.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -641,8 +641,7 @@ void IOHandlerEditline::PrintAsync(const char *s, size_t len, bool is_stdout) {
641641
IOHandler::PrintAsync(s, len, is_stdout);
642642
#ifdef _WIN32
643643
if (prompt)
644-
IOHandler::PrintAsync(GetOutputStreamFileSP().get(), prompt,
645-
strlen(prompt));
644+
IOHandler::PrintAsync(prompt, strlen(prompt), is_stdout);
646645
#endif
647646
}
648647
}

0 commit comments

Comments
 (0)