diff options
Diffstat (limited to 'src/serdi.c')
-rw-r--r-- | src/serdi.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/serdi.c b/src/serdi.c index baa19a36..81ca35c5 100644 --- a/src/serdi.c +++ b/src/serdi.c @@ -334,9 +334,9 @@ main(int argc, char** argv) SerdURIView base_uri = SERD_URI_NULL; SerdNode base = SERD_NODE_NULL; if (a < argc) { // Base URI given on command line - base = serd_node_new_uri_from_string((const char*)argv[a], NULL, &base_uri); + base = serd_new_uri_from_string((const char*)argv[a], NULL, &base_uri); } else if (from_file && in_fd != stdin) { // Use input file URI - base = serd_node_new_file_uri(input, NULL, &base_uri); + base = serd_new_file_uri(input, NULL, &base_uri); } FILE* const out_fd = stdout; |