summaryrefslogtreecommitdiff
path: root/libs/ardour/buffer_manager.cc
diff options
context:
space:
mode:
authorCarl Hetherington <carl@carlh.net>2010-04-22 12:22:57 +0000
committerCarl Hetherington <carl@carlh.net>2010-04-22 12:22:57 +0000
commit3bfb8ce383daa892624d1fa27332e73168bba24a (patch)
treeb56573194564569769a312cf60a03b48c1b3ae5c /libs/ardour/buffer_manager.cc
parentc71cc3702e68e1dcde40d7d9fb1abb5a4699da49 (diff)
Gah! Typo in previous commit.
git-svn-id: svn://localhost/ardour2/branches/3.0@6960 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/ardour/buffer_manager.cc')
-rw-r--r--libs/ardour/buffer_manager.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/ardour/buffer_manager.cc b/libs/ardour/buffer_manager.cc
index f9c73d5b3e..8213601798 100644
--- a/libs/ardour/buffer_manager.cc
+++ b/libs/ardour/buffer_manager.cc
@@ -69,7 +69,7 @@ BufferManager::ensure_buffers (ChanCount howmany)
{
/* this is protected by the audioengine's process lock: we do not */
- for (ThreadBufferList::iterator i = thread_buffers_list->begin(); i != thread_buffers_list_end(); ++i) {
+ for (ThreadBufferList::iterator i = thread_buffers_list->begin(); i != thread_buffers_list->end(); ++i) {
(*i)->ensure_buffers (howmany);
}
}