From 5fcea5833df6f8562126683521f3c2ad6cb9f1e9 Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Wed, 8 Aug 2018 14:09:31 +0200 Subject: [PATCH] Properly announce support for Vendor string --- libs/ardour/session_vst.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/ardour/session_vst.cc b/libs/ardour/session_vst.cc index c91bdcf235..befe5a84ad 100644 --- a/libs/ardour/session_vst.cc +++ b/libs/ardour/session_vst.cc @@ -437,7 +437,7 @@ intptr_t Session::vst_callback ( SHOW_CALLBACK ("audioMasterGetVendorString"); // fills with a string identifying the vendor (max 64 char) strcpy ((char*) ptr, "Linux Audio Systems"); - return 0; + return 1; case audioMasterGetProductString: SHOW_CALLBACK ("audioMasterGetProductString");