From 5f994c07a830438c684430e875cc4d2f79348841 Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Tue, 26 Jul 2016 02:26:42 +0200 Subject: 32bit compat (amend 90a67d04) --- libs/ardour/session.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libs/ardour/session.cc') diff --git a/libs/ardour/session.cc b/libs/ardour/session.cc index 272bd765e6..99efc1cb72 100644 --- a/libs/ardour/session.cc +++ b/libs/ardour/session.cc @@ -2078,7 +2078,7 @@ Session::audible_frame () const } } - return std::max (0l, ret); + return std::max ((framepos_t)0, ret); } void -- cgit v1.2.3