aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/eg-sampler.lv2/uris.h
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2012-04-12 02:39:05 +0000
committerDavid Robillard <d@drobilla.net>2012-04-12 02:39:05 +0000
commitf0f9e67865ff9beb323ad1acab4d0136ea08c38f (patch)
treeb0cc5580f43a4d128e9444df42e8e6acd14b002e /plugins/eg-sampler.lv2/uris.h
parentcb1eb8a0ac422f64f7be787826f6ab37343de850 (diff)
downloadlv2-f0f9e67865ff9beb323ad1acab4d0136ea08c38f.tar.xz
Make all atom/util.h functions start with lv2_atom.
Diffstat (limited to 'plugins/eg-sampler.lv2/uris.h')
-rw-r--r--plugins/eg-sampler.lv2/uris.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/eg-sampler.lv2/uris.h b/plugins/eg-sampler.lv2/uris.h
index 3f080ef..f983516 100644
--- a/plugins/eg-sampler.lv2/uris.h
+++ b/plugins/eg-sampler.lv2/uris.h
@@ -121,7 +121,7 @@ read_set_file(const SamplerURIs* uris,
/* Get body of message. */
const LV2_Atom_Object* body = NULL;
- lv2_object_get(obj, uris->patch_body, &body, 0);
+ lv2_atom_object_get(obj, uris->patch_body, &body, 0);
if (!body) {
fprintf(stderr, "Malformed set message has no body.\n");
return NULL;
@@ -133,7 +133,7 @@ read_set_file(const SamplerURIs* uris,
/* Get file path from body. */
const LV2_Atom* file_path = NULL;
- lv2_object_get(body, uris->eg_file, &file_path, 0);
+ lv2_atom_object_get(body, uris->eg_file, &file_path, 0);
if (!file_path) {
fprintf(stderr, "Ignored set message with no file PATH.\n");
return NULL;