summaryrefslogtreecommitdiff
path: root/gtk2_ardour/video_monitor.cc
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2019-03-05 19:06:29 +0100
committerRobin Gareus <robin@gareus.org>2019-03-05 22:49:18 +0100
commita390d8d3ca9f6e080b790a4d40f1687b498b1ed3 (patch)
tree1716c0009e0326c7f58f314d6e04db391f5c972f /gtk2_ardour/video_monitor.cc
parente1ffe7857ffdd6d29a8548267571e76e569c1fe9 (diff)
Use enum for exec stderr parameter (2/2)
Diffstat (limited to 'gtk2_ardour/video_monitor.cc')
-rw-r--r--gtk2_ardour/video_monitor.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk2_ardour/video_monitor.cc b/gtk2_ardour/video_monitor.cc
index d6831e45b7..c94b046372 100644
--- a/gtk2_ardour/video_monitor.cc
+++ b/gtk2_ardour/video_monitor.cc
@@ -76,7 +76,7 @@ VideoMonitor::start ()
sync_by_manual_seek = false;
if (clock_connection.connected()) { clock_connection.disconnect(); }
- if (process->start(debug_enable?2:1)) {
+ if (process->start (debug_enable ? SystemExec::MergeWithStdin : SystemExec::IgnoreAndClose)) {
return false;
}
return true;