summaryrefslogtreecommitdiff
path: root/src/raptor_namespace.c
diff options
context:
space:
mode:
authorDave Beckett <dave@dajobe.org>2010-01-09 23:25:48 -0800
committerDave Beckett <dave@dajobe.org>2010-01-09 23:25:48 -0800
commit8efb1aabbb2f29b38556cfe47fdd7c8b9b785dc4 (patch)
tree5526a8b2c0cf25f1bade71f95f7f0624599a2543 /src/raptor_namespace.c
parent906fa827ce37908b5bd54c01dec94d47e168ade2 (diff)
downloadraptor-8efb1aabbb2f29b38556cfe47fdd7c8b9b785dc4.tar.gz
Remove _v2 suffix from raptor_uri constructors
Diffstat (limited to 'src/raptor_namespace.c')
-rw-r--r--src/raptor_namespace.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/raptor_namespace.c b/src/raptor_namespace.c
index d94ccdfa..71420490 100644
--- a/src/raptor_namespace.c
+++ b/src/raptor_namespace.c
@@ -149,11 +149,11 @@ raptor_namespaces_init_v2(raptor_world* world,
nstack->def_namespace = NULL;
- nstack->rdf_ms_uri = raptor_new_uri_v2(nstack->world,
+ nstack->rdf_ms_uri = raptor_new_uri(nstack->world,
(const unsigned char*)raptor_rdf_namespace_uri);
failures += !nstack->rdf_ms_uri;
- nstack->rdf_schema_uri = raptor_new_uri_v2(nstack->world,
+ nstack->rdf_schema_uri = raptor_new_uri(nstack->world,
(const unsigned char*)raptor_rdf_schema_namespace_uri);
failures += !nstack->rdf_schema_uri;
@@ -591,7 +591,7 @@ raptor_new_namespace(raptor_namespace_stack *nstack,
ns_uri_string = NULL;
if(ns_uri_string) {
- ns_uri = raptor_new_uri_v2(nstack->world, ns_uri_string);
+ ns_uri = raptor_new_uri(nstack->world, ns_uri_string);
if(!ns_uri)
return NULL;
}