summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2011-06-09 17:24:21 +0000
committerDavid Robillard <d@drobilla.net>2011-06-09 17:24:21 +0000
commitd57cae4e43dd718ad416748032f1944c313696ff (patch)
tree25a70a2ac405809f25a3b4f56f667516f4578b94 /src
parent3b333151e8d9b245d10d28b8f5c427e3d33a1c66 (diff)
downloadlilv-d57cae4e43dd718ad416748032f1944c313696ff.tar.gz
lilv-d57cae4e43dd718ad416748032f1944c313696ff.tar.bz2
lilv-d57cae4e43dd718ad416748032f1944c313696ff.zip
Fix badly typed return
git-svn-id: http://svn.drobilla.net/lad/trunk/lilv@3378 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src')
-rw-r--r--src/world.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/world.c b/src/world.c
index e94bcd8..40b92f2 100644
--- a/src/world.c
+++ b/src/world.c
@@ -101,7 +101,7 @@ void
lilv_world_free(LilvWorld* world)
{
if (!world) {
- return NULL;
+ return;
}
lilv_plugin_class_free(world->lv2_plugin_class);