aboutsummaryrefslogtreecommitdiffstats
path: root/src/serdi.c
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2018-06-13 15:18:27 -0400
committerDavid Robillard <d@drobilla.net>2020-10-27 13:13:58 +0100
commit06b775c1de2173720fe12abec2fbe225c353a12b (patch)
tree8d244b45091234136a47c038b33042a77f740134 /src/serdi.c
parent897590f6408b9b2b1aae2a060465da6d0faf42be (diff)
downloadserd-06b775c1de2173720fe12abec2fbe225c353a12b.tar.gz
serd-06b775c1de2173720fe12abec2fbe225c353a12b.tar.bz2
serd-06b775c1de2173720fe12abec2fbe225c353a12b.zip
Shorten node constructor names
Diffstat (limited to 'src/serdi.c')
-rw-r--r--src/serdi.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/serdi.c b/src/serdi.c
index 71c4e683..5e64e709 100644
--- a/src/serdi.c
+++ b/src/serdi.c
@@ -196,9 +196,9 @@ main(int argc, char** argv)
SerdNode* base = NULL;
if (a < argc) { // Base URI given on command line
- base = serd_node_new_uri((const char*)argv[a]);
+ base = serd_new_uri(argv[a]);
} else if (!from_string && !from_stdin) { // Use input file URI
- base = serd_node_new_file_uri(input, NULL, true);
+ base = serd_new_file_uri(input, NULL, true);
}
FILE* out_fd = stdout;
@@ -240,7 +240,7 @@ main(int argc, char** argv)
serd_world_set_error_sink(world, quiet_error_sink, NULL);
}
- SerdNode* root = serd_node_new_uri(root_uri);
+ SerdNode* root = serd_new_uri(root_uri);
serd_writer_set_root_uri(writer, root);
serd_writer_chop_blank_prefix(writer, chop_prefix);
serd_reader_add_blank_prefix(reader, add_prefix);