diff options
Diffstat (limited to 'src/cli/cli.h')
-rw-r--r-- | src/cli/cli.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cli/cli.h b/src/cli/cli.h index a5150d6d7..fcff94870 100644 --- a/src/cli/cli.h +++ b/src/cli/cli.h @@ -216,12 +216,12 @@ class Command if(m_user_args.count("output")) { - m_output_stream.reset(new std::ofstream(get_arg("output"))); + m_output_stream.reset(new std::ofstream(get_arg("output"), std::ios::binary)); } if(m_user_args.count("error_output")) { - m_error_output_stream.reset(new std::ofstream(get_arg("error_output"))); + m_error_output_stream.reset(new std::ofstream(get_arg("error_output"), std::ios::binary)); } // Now insert any defaults for options not supplied by the user |