summaryrefslogtreecommitdiffstats
path: root/src/plugin.c
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2021-04-08 18:28:55 -0400
committerDavid Robillard <d@drobilla.net>2021-04-08 18:28:55 -0400
commit2344bf4c5b5e6cbd268ed5a0075f0e0b1b27996b (patch)
treeac084750678c08483548be624ede477346605ba7 /src/plugin.c
parent5a540685f5847a18733d21df5f271933e2239600 (diff)
downloadlilv-2344bf4c5b5e6cbd268ed5a0075f0e0b1b27996b.tar.gz
lilv-2344bf4c5b5e6cbd268ed5a0075f0e0b1b27996b.tar.bz2
lilv-2344bf4c5b5e6cbd268ed5a0075f0e0b1b27996b.zip
fixup! WIP: Port to serd1
Diffstat (limited to 'src/plugin.c')
-rw-r--r--src/plugin.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugin.c b/src/plugin.c
index 1b34e44..05a15f9 100644
--- a/src/plugin.c
+++ b/src/plugin.c
@@ -1032,14 +1032,14 @@ lilv_plugin_write_description(LilvWorld* world,
// Write plugin description
SerdRange* plug_range =
serd_model_range(world->model, subject, NULL, NULL, NULL);
- serd_range_serialise(plug_range, iface, 0);
+ serd_write_range(plug_range, iface, 0);
// Write port descriptions
for (uint32_t i = 0; i < num_ports; ++i) {
const LilvPort* port = plugin->ports[i];
SerdRange* port_range =
serd_model_range(world->model, port->node, NULL, NULL, NULL);
- serd_range_serialise(port_range, iface, 0);
+ serd_write_range(port_range, iface, 0);
}
serd_writer_free(writer);