From 0f63b829439e74c9ca8e3e1b8597651ddff361c6 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Mon, 23 Mar 2020 21:47:13 -0600 Subject: fix error in multiple calls to SourceFactory::createWritable() removal of tape tracks removed an intermediate argument in the argument list; presence of default args for the last two arguments and implicit conversion from int->bool prevented the compiler from complaining about any existing calls. This supplements/extends a54b000a70 --- libs/ardour/filter.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libs/ardour/filter.cc') diff --git a/libs/ardour/filter.cc b/libs/ardour/filter.cc index c5a0ff4282..040a1cab83 100644 --- a/libs/ardour/filter.cc +++ b/libs/ardour/filter.cc @@ -86,7 +86,7 @@ Filter::make_new_sources (boost::shared_ptr region, SourceList& nsrcs, s nsrcs.push_back (boost::dynamic_pointer_cast ( SourceFactory::createWritable (region->data_type(), session, - path, false, sample_rate))); + path, sample_rate))); } catch (failed_constructor& err) { -- cgit v1.2.3