summaryrefslogtreecommitdiffstats
path: root/src/world.c
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2014-11-22 01:32:31 +0000
committerDavid Robillard <d@drobilla.net>2014-11-22 01:32:31 +0000
commitee7ad94720483fc24deb108441b65acf8e03f66d (patch)
tree425aa5cd6d007d61b321d1573106fb4f7b175159 /src/world.c
parent48e05557b8afac26bcdd0416ef0ab9a18037e529 (diff)
downloadlilv-ee7ad94720483fc24deb108441b65acf8e03f66d.tar.gz
lilv-ee7ad94720483fc24deb108441b65acf8e03f66d.tar.bz2
lilv-ee7ad94720483fc24deb108441b65acf8e03f66d.zip
Windows fixes (thanks John Emmas).
git-svn-id: http://svn.drobilla.net/lad/trunk/lilv@5491 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/world.c')
-rw-r--r--src/world.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/world.c b/src/world.c
index bd926d9..10382c7 100644
--- a/src/world.c
+++ b/src/world.c
@@ -652,7 +652,7 @@ lilv_world_unload_file(LilvWorld* world, LilvNode* file)
{
ZixTreeIter* iter;
if (!zix_tree_find((ZixTree*)world->loaded_files, file, &iter)) {
- zix_tree_remove(world->loaded_files, iter);
+ zix_tree_remove((ZixTree*)world->loaded_files, iter);
return 0;
}
return 1;