summaryrefslogtreecommitdiff
path: root/libs/ardour/vst_info_file.cc
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2014-02-25 00:52:37 +0100
committerRobin Gareus <robin@gareus.org>2014-02-25 00:52:37 +0100
commit7865acf56349b024183bc4213cb6f7c0bbced703 (patch)
treea9ff5cc160faf152ed4961810a233ae079ad0cf6 /libs/ardour/vst_info_file.cc
parent61c199b97c3eb4bbd84d2d033594be682944a416 (diff)
fix some code typos (compiler warnings)
Diffstat (limited to 'libs/ardour/vst_info_file.cc')
-rw-r--r--libs/ardour/vst_info_file.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/libs/ardour/vst_info_file.cc b/libs/ardour/vst_info_file.cc
index 3586d6de28..ee103bf91e 100644
--- a/libs/ardour/vst_info_file.cc
+++ b/libs/ardour/vst_info_file.cc
@@ -320,7 +320,7 @@ vstfx_blacklist (const char *dllpath)
return false;
}
-static bool
+static void
vstfx_un_blacklist (const char *dllpath)
{
::g_unlink(vstfx_blacklist_path (dllpath, 0).c_str());
@@ -712,7 +712,7 @@ vstfx_get_info (const char* dllpath, int type)
bool ok;
/* blacklist in case instantiation fails */
- vstfx_blacklist_file(dllpath);
+ vstfx_blacklist(dllpath);
switch (type) { // TODO use lib ardour's type
#ifdef WINDOWS_VST_SUPPORT