From 8202e6cfbb235e226581a34b8686c8c6057a9dff Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Thu, 23 Sep 2010 22:55:08 +0000 Subject: [PATCH] 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 --- libs/ardour/session.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 e = tr->playlist()->get_extent (); + pair e = tr->playlist()->get_extent (); if (e.first < ext.first) { ext.first = e.first; }