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); } }