diff options
author | David Robillard <d@drobilla.net> | 2007-07-23 17:42:08 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2007-07-23 17:42:08 +0000 |
commit | efc597e09cebbec1ae579cfc37d114e9a458e578 (patch) | |
tree | d50e9ae913b1ef946e3ab7c86353f93193d7bd68 /src/plugin.c | |
parent | 043e683a796e1338a8874b0e7c195292ff32b7de (diff) | |
download | lilv-efc597e09cebbec1ae579cfc37d114e9a458e578.tar.gz lilv-efc597e09cebbec1ae579cfc37d114e9a458e578.tar.bz2 lilv-efc597e09cebbec1ae579cfc37d114e9a458e578.zip |
Updated LV2 spec.
git-svn-id: http://svn.drobilla.net/lad/slv2@602 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/plugin.c')
-rw-r--r-- | src/plugin.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugin.c b/src/plugin.c index ed80ff1..7802fdd 100644 --- a/src/plugin.c +++ b/src/plugin.c @@ -189,7 +189,7 @@ slv2_plugin_load(SLV2Plugin p) // Load ports query = (const unsigned char*) - "PREFIX : <http://lv2plug.in/ontology#>\n" + "PREFIX : <http://lv2plug.in/ns/lv2core#>\n" "SELECT DISTINCT ?port ?symbol ?index WHERE {\n" "<> :port ?port .\n" "?port :symbol ?symbol ;\n" @@ -302,7 +302,7 @@ slv2_plugin_verify(SLV2Plugin plugin) librdf_node* license_node = librdf_query_results_get_binding_value(results, 2); librdf_node* port_node = librdf_query_results_get_binding_value(results, 3); - if (!strcmp(type_str, "http://lv2plug.in/ontology#Plugin")) + if (!strcmp(type_str, "http://lv2plug.in/ns/lv2core#Plugin")) has_type = true; if (name_node) |