summaryrefslogtreecommitdiffstats
path: root/test/missing_port.lv2/test_missing_port.c
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2022-03-11 18:23:35 -0500
committerDavid Robillard <d@drobilla.net>2022-03-11 18:23:35 -0500
commitb590c510015db3b3ff8201c557c51c38d26c9982 (patch)
tree44e242446e2ef5fa75d531cbdd7cabfbd4c2c15b /test/missing_port.lv2/test_missing_port.c
parent42c4705bbcdf0a638aca6923325ed9a5660bfc26 (diff)
downloadlilv-b590c510015db3b3ff8201c557c51c38d26c9982.tar.gz
lilv-b590c510015db3b3ff8201c557c51c38d26c9982.tar.bz2
lilv-b590c510015db3b3ff8201c557c51c38d26c9982.zip
fixup! WIP: Port to serd1
Diffstat (limited to 'test/missing_port.lv2/test_missing_port.c')
-rw-r--r--test/missing_port.lv2/test_missing_port.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/missing_port.lv2/test_missing_port.c b/test/missing_port.lv2/test_missing_port.c
index fcb5435..ae0055d 100644
--- a/test/missing_port.lv2/test_missing_port.c
+++ b/test/missing_port.lv2/test_missing_port.c
@@ -24,9 +24,9 @@ main(int argc, char** argv)
// Load test plugin bundle
char* const abs_bundle = lilv_path_absolute(bundle_path);
- const SerdStringView abs_bundle_view = SERD_STRING(abs_bundle);
+ const SerdStringView abs_bundle_view = serd_string(abs_bundle);
SerdNode* bundle =
- serd_new_file_uri(NULL, abs_bundle_view, SERD_EMPTY_STRING());
+ serd_new_file_uri(NULL, abs_bundle_view, serd_empty_string());
lilv_world_load_bundle(world, bundle);
free(abs_bundle);