13
0

Fix implicit cast of framepos_t to nframes_t. Fixes #3473.

git-svn-id: svn://localhost/ardour2/branches/3.0@7835 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Carl Hetherington 2010-09-23 22:55:08 +00:00
parent b6eede26fa
commit 8202e6cfbb

View File

@ -2530,7 +2530,7 @@ Session::get_extent () const
continue;
}
pair<nframes_t, nframes_t> e = tr->playlist()->get_extent ();
pair<framepos_t, framepos_t> e = tr->playlist()->get_extent ();
if (e.first < ext.first) {
ext.first = e.first;
}