diff options
author | David Robillard <d@drobilla.net> | 2011-09-29 01:14:00 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2011-09-29 01:14:00 +0000 |
commit | 9fe0099b416b78b6b883b8a2422842f44d954f1d (patch) | |
tree | 1689f3a5abe204752385eec0ab61c40cab22cd72 /src/world.c | |
parent | 70610a9cc403148e248fa2300fd7c0757f86a339 (diff) | |
download | lilv-9fe0099b416b78b6b883b8a2422842f44d954f1d.tar.gz lilv-9fe0099b416b78b6b883b8a2422842f44d954f1d.tar.bz2 lilv-9fe0099b416b78b6b883b8a2422842f44d954f1d.zip |
Tidy.
git-svn-id: http://svn.drobilla.net/lad/trunk/lilv@3507 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/world.c')
-rw-r--r-- | src/world.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/world.c b/src/world.c index dc3c5b0..bbf1dab 100644 --- a/src/world.c +++ b/src/world.c @@ -332,7 +332,7 @@ lilv_world_add_plugin(LilvWorld* world, const SordNode* dyn_manifest_lib, const SordNode* bundle_node) { - LilvNode* plugin_uri = lilv_node_new_from_node(world, plugin_node); + LilvNode* plugin_uri = lilv_node_new_from_node(world, plugin_node); const LilvPlugin* last = lilv_plugins_get_by_uri(world->plugins, plugin_uri); if (last) { @@ -740,8 +740,8 @@ lilv_world_load_plugin_classes(LilvWorld* world) continue; } - const SordNode* label_node = lilv_match_object(labels); - const uint8_t* label = (const uint8_t*)sord_node_get_string(label_node); + const SordNode* label_node = lilv_match_object(labels); + const uint8_t* label = sord_node_get_string(label_node); lilv_match_end(labels); LilvPluginClasses* classes = world->plugin_classes; |