summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2012-03-08 18:54:16 +0000
committerDavid Robillard <d@drobilla.net>2012-03-08 18:54:16 +0000
commita20303d251db7e31bcc69527c136649001495bc1 (patch)
treef350381720f94ced08d226583aed549fdc22d26b /src
parent6b06af9f9cd3e0fbc7548ade67f73af11cf0ee3d (diff)
downloadsratom-a20303d251db7e31bcc69527c136649001495bc1.tar.gz
sratom-a20303d251db7e31bcc69527c136649001495bc1.tar.bz2
sratom-a20303d251db7e31bcc69527c136649001495bc1.zip
Update for latest serd.
git-svn-id: http://svn.drobilla.net/lad/trunk/sratom@4035 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src')
-rw-r--r--src/sratom.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/sratom.c b/src/sratom.c
index 1e74067..fa502b6 100644
--- a/src/sratom.c
+++ b/src/sratom.c
@@ -206,7 +206,7 @@ sratom_write(Sratom* sratom,
const uint8_t* str = USTR(body);
if (path_is_absolute((const char*)str)) {
new_node = true;
- object = serd_node_new_file_uri(str, NULL, NULL);
+ object = serd_node_new_file_uri(str, NULL, NULL, false);
} else {
SerdEnv* env = serd_writer_get_env(writer);
SerdURI base_uri = SERD_URI_NULL;
@@ -218,7 +218,7 @@ sratom_write(Sratom* sratom,
datatype = serd_node_from_string(SERD_URI, USTR(LV2_ATOM__Path));
} else {
new_node = true;
- SerdNode rel = serd_node_new_file_uri(str, NULL, NULL);
+ SerdNode rel = serd_node_new_file_uri(str, NULL, NULL, false);
object = serd_node_new_uri_from_node(&rel, &base_uri, NULL);
serd_node_free(&rel);
}