mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-16 03:36:32 +01:00
Use enum for exec stderr parameter (1/2)
This commit is contained in:
parent
fdf74cf850
commit
e1ffe7857f
7 changed files with 19 additions and 13 deletions
|
|
@ -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 ()) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue