diff options
author | David Robillard <d@drobilla.net> | 2011-11-11 19:36:48 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2011-11-11 19:36:48 +0000 |
commit | 27943688b94a516337dc5c11986011f87d21e551 (patch) | |
tree | 8e6e149e5c75ee4f017f28f2b6e927c57946d65d | |
parent | 36ba4214a69a75fab994ec92d16aaf685c238002 (diff) | |
download | lv2-27943688b94a516337dc5c11986011f87d21e551.tar.xz |
Fix incorrect parameter type.
-rw-r--r-- | ext/state.lv2/state.h | 12 |
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. |