summaryrefslogtreecommitdiffstats
path: root/utils
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2008-01-28 01:18:25 +0000
committerDavid Robillard <d@drobilla.net>2008-01-28 01:18:25 +0000
commitcbeb09ee0a31a8bec670864b03d4f743f968d1b1 (patch)
tree1839dcf4cb4b9e572e313b0a1a9c594fadca14f6 /utils
parent6de587b04154f2efdc2a94c0a78225f7adc88ff9 (diff)
downloadlilv-cbeb09ee0a31a8bec670864b03d4f743f968d1b1.tar.gz
lilv-cbeb09ee0a31a8bec670864b03d4f743f968d1b1.tar.bz2
lilv-cbeb09ee0a31a8bec670864b03d4f743f968d1b1.zip
Add slv2_plugin_get_num_ports_of_class.
git-svn-id: http://svn.drobilla.net/lad/slv2@1116 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'utils')
-rw-r--r--utils/lv2_inspect.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/lv2_inspect.c b/utils/lv2_inspect.c
index 266d9e6..5aa6a6b 100644
--- a/utils/lv2_inspect.c
+++ b/utils/lv2_inspect.c
@@ -96,7 +96,7 @@ print_plugin(SLV2Plugin p)
SLV2Value val = NULL;
printf("%s\n\n", slv2_value_as_uri(slv2_plugin_get_uri(p)));
-
+
val = slv2_plugin_get_name(p);
printf("\tName: %s\n", slv2_value_as_string(val));
slv2_value_free(val);