From d901932f07cfc22a9b166267fc89f9ea25ba2760 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Fri, 4 Dec 2009 11:08:53 +0000 Subject: Fix setup of port insert IO names. git-svn-id: svn://localhost/ardour2/branches/3.0@6276 d708f5d6-7413-0410-9779-e7cbd77b26cf --- libs/ardour/port_insert.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libs/ardour/port_insert.cc') diff --git a/libs/ardour/port_insert.cc b/libs/ardour/port_insert.cc index 4df27bff72..a70718bd3e 100644 --- a/libs/ardour/port_insert.cc +++ b/libs/ardour/port_insert.cc @@ -184,7 +184,7 @@ PortInsert::set_name (const std::string& name) { bool ret = Processor::set_name (name); - ret = (_input->set_name (name) || _output->set_name (name)); + ret = (ret && _input->set_name (name) && _output->set_name (name)); return ret; } -- cgit v1.2.3