浏览代码

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

Closes #902
Joel Stienlet 5 年之前
父节点
当前提交
f2e67169bc
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      panda/src/downloader/multiplexStream.I

+ 1 - 1
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;
 }