summaryrefslogtreecommitdiff
path: root/libs/ardour/track.cc
diff options
context:
space:
mode:
authorCarl Hetherington <carl@carlh.net>2012-04-11 16:27:05 +0000
committerCarl Hetherington <carl@carlh.net>2012-04-11 16:27:05 +0000
commit8cc2f19926b4dbd2c1e48351b07fe63b844a9271 (patch)
tree9d80e908cccceef195be4b2946a448734b64c841 /libs/ardour/track.cc
parent83c765b405bc92d45f181a134cbe29c0370df3e3 (diff)
Remove unused parameter to Port::flush_buffers().
git-svn-id: svn://localhost/ardour2/branches/3.0@11906 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/ardour/track.cc')
-rw-r--r--libs/ardour/track.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/ardour/track.cc b/libs/ardour/track.cc
index 5b6cb63091..2ef3c85b4a 100644
--- a/libs/ardour/track.cc
+++ b/libs/ardour/track.cc
@@ -406,7 +406,7 @@ Track::no_roll (pframes_t nframes, framepos_t start_frame, framepos_t end_frame,
for (ProcessorList::iterator i = _processors.begin(); i != _processors.end(); ++i) {
boost::shared_ptr<Delivery> d = boost::dynamic_pointer_cast<Delivery> (*i);
if (d) {
- d->flush_buffers (nframes, end_frame - start_frame - 1);
+ d->flush_buffers (nframes);
}
}