summaryrefslogtreecommitdiffstats
path: root/src/pluginui.c
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2009-05-13 16:04:14 +0000
committerDavid Robillard <d@drobilla.net>2009-05-13 16:04:14 +0000
commit0a04be1e9e8f3c6b355c014f5755bb30da0d5aec (patch)
treeb4eb149da0fc57af8c4e9356231aa191e6f1a118 /src/pluginui.c
parent011d130c2b7f54b859ae41aac8b95d5825b975be (diff)
downloadlilv-0a04be1e9e8f3c6b355c014f5755bb30da0d5aec.tar.gz
lilv-0a04be1e9e8f3c6b355c014f5755bb30da0d5aec.tar.bz2
lilv-0a04be1e9e8f3c6b355c014f5755bb30da0d5aec.zip
Strip trailing whitespace.
git-svn-id: http://svn.drobilla.net/lad/trunk/slv2@1999 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/pluginui.c')
-rw-r--r--src/pluginui.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/pluginui.c b/src/pluginui.c
index fb87f63..0ac3dca 100644
--- a/src/pluginui.c
+++ b/src/pluginui.c
@@ -1,6 +1,6 @@
/* SLV2
* Copyright (C) 2007 Dave Robillard <http://drobilla.net>
- *
+ *
* This library is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by the Free
* Software Foundation; either version 2 of the License, or (at your option)
@@ -40,9 +40,9 @@ slv2_ui_new(SLV2World world,
ui->world = world;
ui->uri = slv2_value_new_librdf_uri(world, uri);
ui->binary_uri = slv2_value_new_librdf_uri(world, binary_uri);
-
+
assert(ui->binary_uri);
-
+
// FIXME: kludge
char* bundle = strdup(slv2_value_as_string(ui->binary_uri));
char* last_slash = strrchr(bundle, '/') + 1;
@@ -63,15 +63,15 @@ slv2_ui_free(SLV2UI ui)
{
slv2_value_free(ui->uri);
ui->uri = NULL;
-
+
slv2_value_free(ui->bundle_uri);
ui->bundle_uri = NULL;
-
+
slv2_value_free(ui->binary_uri);
ui->binary_uri = NULL;
slv2_values_free(ui->classes);
-
+
free(ui);
}