summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2015-10-05 22:37:41 +0200
committerRobin Gareus <robin@gareus.org>2015-10-05 22:37:41 +0200
commit168212b86485c4c3962781b1dfc74a68723165ef (patch)
treee2d08c9c54b02c7ff2d517a0be2ffb4e4ee0af36
parent2397429e99d4b79ae874392665db2627674daaa0 (diff)
fix typo
-rw-r--r--libs/ardour/plugin_manager.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/ardour/plugin_manager.cc b/libs/ardour/plugin_manager.cc
index 3b14f146e5..72ee2745a4 100644
--- a/libs/ardour/plugin_manager.cc
+++ b/libs/ardour/plugin_manager.cc
@@ -268,7 +268,7 @@ PluginManager::refresh (bool cache_only)
string fn = Glib::build_filename (ARDOUR::user_cache_directory(), VST_BLACKLIST);
if (Glib::file_test (fn, Glib::FILE_TEST_EXISTS)) {
gchar *bl = NULL;
- if (g_file_get_contents(fn.c_str (), contents, NULL, NULL)) {
+ if (g_file_get_contents(fn.c_str (), bl, NULL, NULL)) {
PBD::info << _("VST Blacklist:") << "\n" << bl << "-----" << endmsg;
g_free (bl);
}