From 145f6d587c8cd416fde029b071a9a6a818a656c7 Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Fri, 6 Sep 2024 20:03:48 +0200 Subject: [PATCH] fix previous commit --- libs/ardour/plugin_manager.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/ardour/plugin_manager.cc b/libs/ardour/plugin_manager.cc index cd4158f484..e43f955654 100644 --- a/libs/ardour/plugin_manager.cc +++ b/libs/ardour/plugin_manager.cc @@ -1835,7 +1835,7 @@ PluginManager::mac_vst_discover_from_path (string path, std::set& s return -1; } - if (scanned_paths.find (path) != scanned_paths::end) { + if (scanned_paths.find (path) != scanned_paths.end ()) { return 0; } scanned_paths.insert (path);