corrects bug: wrong case entered in MultiplexStreamBuf::Output::write_string() in panda/src/downloader/multiplexStreamBuf.cxx

Closes #902
This commit is contained in:
Joel Stienlet 2020-04-07 16:59:15 +02:00 committed by rdb
parent 9e80282aff
commit f2e67169bc

View File

@ -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;
}