From 2344bf4c5b5e6cbd268ed5a0075f0e0b1b27996b Mon Sep 17 00:00:00 2001 From: David Robillard Date: Thu, 8 Apr 2021 18:28:55 -0400 Subject: fixup! WIP: Port to serd1 --- src/plugin.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/plugin.c') 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); -- cgit v1.2.1