summaryrefslogtreecommitdiff
path: root/libs
diff options
context:
space:
mode:
Diffstat (limited to 'libs')
-rw-r--r--libs/ardour/audio_port.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/ardour/audio_port.cc b/libs/ardour/audio_port.cc
index ddbb2238df..510ab65f5d 100644
--- a/libs/ardour/audio_port.cc
+++ b/libs/ardour/audio_port.cc
@@ -136,7 +136,7 @@ AudioPort::get_audio_buffer (pframes_t nframes)
Sample* addr;
- if (!externally_connected () || 0 != (flags() & TransportSyncPort)) {
+ if (!externally_connected () || (0 != (flags() & TransportSyncPort))) {
addr = (Sample *) port_engine.get_buffer (_port_handle, nframes);
} else {
/* _data was read and resampled as necessary in ::cycle_start */