summaryrefslogtreecommitdiff
path: root/src/raptor_serialize_rdfxmla.c
diff options
context:
space:
mode:
authorDave Beckett <dave@dajobe.org>2010-01-08 16:19:12 -0800
committerDave Beckett <dave@dajobe.org>2010-01-08 16:19:12 -0800
commit88b8fe98387e4418d0aa7a1cda85b77326d2daed (patch)
tree335e7e85ed9da3c26f8b422348d1396412db6243 /src/raptor_serialize_rdfxmla.c
parentffcd70e2050abffd34a0bc2f05396572f3f91b2f (diff)
downloadraptor-88b8fe98387e4418d0aa7a1cda85b77326d2daed.tar.gz
raptor_new_namespaces_v2 loses error_handler / error_data args.
(raptor_new_namespaces_v2): Delete args. Update all callers with the change - many of which were NULL/NULL anyway!
Diffstat (limited to 'src/raptor_serialize_rdfxmla.c')
-rw-r--r--src/raptor_serialize_rdfxmla.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/raptor_serialize_rdfxmla.c b/src/raptor_serialize_rdfxmla.c
index 285d78b4..528be940 100644
--- a/src/raptor_serialize_rdfxmla.c
+++ b/src/raptor_serialize_rdfxmla.c
@@ -858,10 +858,7 @@ raptor_rdfxmla_serialize_init(raptor_serializer* serializer, const char *name)
raptor_rdfxmla_context* context = (raptor_rdfxmla_context*)serializer->context;
raptor_uri *rdf_type_uri;
- context->nstack = raptor_new_namespaces_v2(serializer->world,
- (raptor_simple_message_handler)raptor_serializer_simple_error,
- serializer,
- 1);
+ context->nstack = raptor_new_namespaces_v2(serializer->world, 1);
if(!context->nstack)
return 1;