aboutsummaryrefslogtreecommitdiffstats
path: root/ext
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2011-11-11 19:36:48 +0000
committerDavid Robillard <d@drobilla.net>2011-11-11 19:36:48 +0000
commit27943688b94a516337dc5c11986011f87d21e551 (patch)
tree8e6e149e5c75ee4f017f28f2b6e927c57946d65d /ext
parent36ba4214a69a75fab994ec92d16aaf685c238002 (diff)
downloadlv2-27943688b94a516337dc5c11986011f87d21e551.tar.xz
Fix incorrect parameter type.
Diffstat (limited to 'ext')
-rw-r--r--ext/state.lv2/state.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/ext/state.lv2/state.h b/ext/state.lv2/state.h
index 6ada0e1..cb6f2fc 100644
--- a/ext/state.lv2/state.h
+++ b/ext/state.lv2/state.h
@@ -108,12 +108,12 @@ typedef enum {
The plugin MUST NOT attempt to use this function outside of the
LV2_State_Interface.restore() context.
*/
-typedef int (*LV2_State_Store_Function)(LV2_State_Handle* handle,
- uint32_t key,
- const void* value,
- size_t size,
- uint32_t type,
- uint32_t flags);
+typedef int (*LV2_State_Store_Function)(LV2_State_Handle handle,
+ uint32_t key,
+ const void* value,
+ size_t size,
+ uint32_t type,
+ uint32_t flags);
/**
A host-provided function to retrieve a property.