From f2e67169bc8f9385ddee54c8943c0ec66413bdaf Mon Sep 17 00:00:00 2001 From: Joel Stienlet Date: Tue, 7 Apr 2020 16:59:15 +0200 Subject: [PATCH] corrects bug: wrong case entered in MultiplexStreamBuf::Output::write_string() in panda/src/downloader/multiplexStreamBuf.cxx Closes #902 --- panda/src/downloader/multiplexStream.I | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/panda/src/downloader/multiplexStream.I b/panda/src/downloader/multiplexStream.I index aff3d4a064..e360df6922 100644 --- a/panda/src/downloader/multiplexStream.I +++ b/panda/src/downloader/multiplexStream.I @@ -37,7 +37,7 @@ add_ostream(std::ostream *out, bool delete_later) { INLINE bool MultiplexStream:: add_stdio_file(FILE *fout, bool close_when_done) { _msb.add_output(MultiplexStreamBuf::BT_line, - MultiplexStreamBuf::OT_ostream, + MultiplexStreamBuf::OT_stdio, nullptr, fout, close_when_done); return true; }