summaryrefslogtreecommitdiffstats
path: root/bindings/test
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2016-09-18 15:22:27 -0400
committerDavid Robillard <d@drobilla.net>2016-09-18 15:22:27 -0400
commit6ff018665747cd10248ba020ba16ba973764eff6 (patch)
tree1840e89964e2fb8fb127ec0128d68db84853a1dd /bindings/test
parent7ce645cfe6fffef55eb43e1e2b63e4ac41c8581c (diff)
downloadlilv-6ff018665747cd10248ba020ba16ba973764eff6.tar.gz
lilv-6ff018665747cd10248ba020ba16ba973764eff6.tar.bz2
lilv-6ff018665747cd10248ba020ba16ba973764eff6.zip
Fix warning
Diffstat (limited to 'bindings/test')
-rw-r--r--bindings/test/bindings_test_plugin.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/bindings/test/bindings_test_plugin.c b/bindings/test/bindings_test_plugin.c
index 86f6fba..3d6c763 100644
--- a/bindings/test/bindings_test_plugin.c
+++ b/bindings/test/bindings_test_plugin.c
@@ -54,7 +54,7 @@ typedef enum {
every instance method. In this simple plugin, only port buffers need to be
stored, since there is no additional instance data. */
typedef struct {
- // Port buffers
+ float* buf;
} Test;
/**
@@ -179,7 +179,7 @@ static const LV2_Descriptor descriptor = {
indices to find all the plugins defined in the library. The index is not an
indentifier, the URI of the returned descriptor is used to determine the
identify of the plugin.
-
+
This method is in the ``discovery'' threading class, so no other functions
or methods in this plugin library will be called concurrently with it.
*/