fix a typo
authorRobin Gareus <robin@gareus.org>
Sat, 15 Aug 2015 17:58:37 +0000 (19:58 +0200)
committerRobin Gareus <robin@gareus.org>
Sat, 15 Aug 2015 17:58:37 +0000 (19:58 +0200)
libs/ardour/plugin_insert.cc

index e23980547cd67c0b684188e41780751fc4286dd0..e09cce8f5a973c09dcc0861af6c0c1bc7ea33774 100644 (file)
@@ -729,7 +729,7 @@ PluginInsert::configure_io (ChanCount in, ChanCount out)
        switch (_match.method) {
        case Split:
        case Hide:
-               if (_plugins.front()->configure_io (_plugins.front()->get_info()->n_inputs, out)) {
+               if (_plugins.front()->configure_io (_plugins.front()->get_info()->n_inputs, out) == false) {
                        PluginIoReConfigure (); /* EMIT SIGNAL */
                        return false;
                }