diff options
Diffstat (limited to 'tools/console.c')
-rw-r--r-- | tools/console.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/console.c b/tools/console.c index f7de779f..012c50a3 100644 --- a/tools/console.c +++ b/tools/console.c @@ -54,10 +54,10 @@ serd_set_base_uri_from_path(SerdEnv* const env, const char* const path) } SerdNode* const file_uri = - serd_new_file_uri(serd_string(input_path), serd_empty_string()); + serd_new_file_uri(NULL, serd_string(input_path), serd_empty_string()); serd_env_set_base_uri(env, serd_node_string_view(file_uri)); - serd_node_free(file_uri); + serd_node_free(NULL, file_uri); zix_free(NULL, input_path); return SERD_SUCCESS; |