From 27943688b94a516337dc5c11986011f87d21e551 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Fri, 11 Nov 2011 19:36:48 +0000 Subject: Fix incorrect parameter type. --- ext/state.lv2/state.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'ext/state.lv2/state.h') 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. -- cgit v1.2.1