summaryrefslogtreecommitdiff
path: root/libs/ardour/export_handler.cc
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2019-03-05 19:06:15 +0100
committerRobin Gareus <robin@gareus.org>2019-03-05 22:49:15 +0100
commite1ffe7857ffdd6d29a8548267571e76e569c1fe9 (patch)
tree564eabf08966b48da4c9c1e7f36c89f23edcd2ea /libs/ardour/export_handler.cc
parentfdf74cf850885a1145305b5a308b08945ba69dd6 (diff)
Use enum for exec stderr parameter (1/2)
Diffstat (limited to 'libs/ardour/export_handler.cc')
-rw-r--r--libs/ardour/export_handler.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/ardour/export_handler.cc b/libs/ardour/export_handler.cc
index cd3d61731d..c39d630d69 100644
--- a/libs/ardour/export_handler.cc
+++ b/libs/ardour/export_handler.cc
@@ -422,7 +422,7 @@ ExportHandler::finish_timespan ()
ARDOUR::SystemExec *se = new ARDOUR::SystemExec(fmt->command(), subs);
info << "Post-export command line : {" << se->to_s () << "}" << endmsg;
se->ReadStdout.connect_same_thread(command_connection, boost::bind(&ExportHandler::command_output, this, _1, _2));
- int ret = se->start (2);
+ int ret = se->start (SystemExec::MergeWithStdin);
if (ret == 0) {
// successfully started
while (se->is_running ()) {