From b3f59e8829a8fcdc1924d0d08d2f8e9c7c9ff2b4 Mon Sep 17 00:00:00 2001 From: falkTX Date: Wed, 27 Feb 2019 23:05:36 +0100 Subject: [PATCH] Fix generated ttl for plugins with instance access Signed-off-by: falkTX --- dpf/distrho/src/DistrhoPluginLV2export.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dpf/distrho/src/DistrhoPluginLV2export.cpp b/dpf/distrho/src/DistrhoPluginLV2export.cpp index 4a27f78..3472ac3 100644 --- a/dpf/distrho/src/DistrhoPluginLV2export.cpp +++ b/dpf/distrho/src/DistrhoPluginLV2export.cpp @@ -153,8 +153,8 @@ void lv2_generate_ttl(const char* const basename) manifestString += " lv2:requiredFeature <" LV2_DATA_ACCESS_URI "> ,\n"; manifestString += " <" LV2_INSTANCE_ACCESS_URI "> ,\n"; manifestString += " <" LV2_OPTIONS__options "> ,\n"; - manifestString += " <" LV2_URID__map "> .\n"; - manifestString += " opts:supportedOption <" LV2_PARAMETERS__sampleRate "> .\n"; + manifestString += " <" LV2_URID__map "> ;\n"; + manifestString += " opts:supportedOption <" LV2_PARAMETERS__sampleRate "> ;\n"; # else // DISTRHO_PLUGIN_WANT_DIRECT_ACCESS manifestString += " rdfs:seeAlso <" + uiTTL + "> .\n"; # endif // DISTRHO_PLUGIN_WANT_DIRECT_ACCESS