summaryrefslogtreecommitdiff
path: root/libs/ardour/export_channel.cc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2014-02-04 14:21:35 -0500
committerPaul Davis <paul@linuxaudiosystems.com>2014-02-04 14:21:35 -0500
commit2b9421fd391efcddde0be3397cb66e19b744a155 (patch)
tree9379555f58acff44337676416d229a0f4c0562e8 /libs/ardour/export_channel.cc
parentc11bf0cc72669feea1a6c2071cef5255bbb1905a (diff)
parent4818621a2797871a10c47fc2f813e51668479fcc (diff)
merge (w/fix) with master
Diffstat (limited to 'libs/ardour/export_channel.cc')
-rw-r--r--libs/ardour/export_channel.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/ardour/export_channel.cc b/libs/ardour/export_channel.cc
index 296bfc9022..fc71d8536f 100644
--- a/libs/ardour/export_channel.cc
+++ b/libs/ardour/export_channel.cc
@@ -242,7 +242,7 @@ RouteExportChannel::read (Sample const *& data, framecnt_t frames) const
#ifndef NDEBUG
(void) frames;
#else
- assert (frames <= (framecnt_t) buffer.size());
+ assert (frames <= (framecnt_t) buffer.capacity());
#endif
data = buffer.data();
}