summaryrefslogtreecommitdiff
path: root/libs/ardour/session.cc
diff options
context:
space:
mode:
authorCarl Hetherington <carl@carlh.net>2010-09-23 22:55:08 +0000
committerCarl Hetherington <carl@carlh.net>2010-09-23 22:55:08 +0000
commit8202e6cfbb235e226581a34b8686c8c6057a9dff (patch)
tree7a995fe08ba1bbc39934274decb0a460a923a4aa /libs/ardour/session.cc
parentb6eede26fa2289406a247b33f21c3e7453f1118e (diff)
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
Diffstat (limited to 'libs/ardour/session.cc')
-rw-r--r--libs/ardour/session.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/ardour/session.cc b/libs/ardour/session.cc
index 24c6d393ed..fb8649d1a0 100644
--- a/libs/ardour/session.cc
+++ b/libs/ardour/session.cc
@@ -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;
}