summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2012-03-31 01:23:49 +0000
committerDavid Robillard <d@drobilla.net>2012-03-31 01:23:49 +0000
commitea3e8d43b7608bbe253179ba84c3656c1a2769b5 (patch)
treeba815d540c0875974b7118c2cafb233e5553ec66 /src
parent22572de85fe57e0ee13042659ea19367a61d9f01 (diff)
downloadlilv-ea3e8d43b7608bbe253179ba84c3656c1a2769b5.tar.gz
lilv-ea3e8d43b7608bbe253179ba84c3656c1a2769b5.tar.bz2
lilv-ea3e8d43b7608bbe253179ba84c3656c1a2769b5.zip
Update for latest LV2 state extension.
git-svn-id: http://svn.drobilla.net/lad/trunk/lilv@4133 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src')
-rw-r--r--src/state.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/state.c b/src/state.c
index b9a4650..a9dfe27 100644
--- a/src/state.c
+++ b/src/state.c
@@ -364,7 +364,7 @@ lilv_state_new_from_instance(const LilvPlugin* plugin,
// Store properties
const LV2_Descriptor* desc = instance->lv2_descriptor;
const LV2_State_Interface* iface = (desc->extension_data)
- ? (LV2_State_Interface*)desc->extension_data(LV2_STATE__Interface)
+ ? (LV2_State_Interface*)desc->extension_data(LV2_STATE__interface)
: NULL;
if (iface) {
@@ -396,7 +396,7 @@ lilv_state_restore(const LilvState* state,
const LV2_Descriptor* desc = instance->lv2_descriptor;
const LV2_State_Interface* iface = (desc->extension_data)
- ? (LV2_State_Interface*)desc->extension_data(LV2_STATE__Interface)
+ ? (LV2_State_Interface*)desc->extension_data(LV2_STATE__interface)
: NULL;
if (iface) {