summaryrefslogtreecommitdiff
path: root/libs
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2020-04-24 11:51:45 -0600
committerPaul Davis <paul@linuxaudiosystems.com>2020-04-24 11:51:45 -0600
commit12b48fff76306136fc6d761b99e8fb7388f1eb01 (patch)
treef72d911c2be2fd5f774123ff3d3e69e9359aae0f /libs
parente6b12bd0aae9e949e8361417be26a124b30971d0 (diff)
fix parentheses around expression that prevented port flags from being set for ltc slave
Diffstat (limited to 'libs')
-rw-r--r--libs/ardour/ltc_slave.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/ardour/ltc_slave.cc b/libs/ardour/ltc_slave.cc
index 2117020e92..62fde9dd2b 100644
--- a/libs/ardour/ltc_slave.cc
+++ b/libs/ardour/ltc_slave.cc
@@ -81,7 +81,7 @@ LTC_TransportMaster::init ()
void
LTC_TransportMaster::create_port ()
{
- if ((_port = AudioEngine::instance()->register_input_port (DataType::AUDIO, string_compose ("%1 in", _name, false, TransportMasterPort))) == 0) {
+ if ((_port = AudioEngine::instance()->register_input_port (DataType::AUDIO, string_compose ("%1 in", _name), false, TransportMasterPort)) == 0) {
throw failed_constructor();
}
}