summaryrefslogtreecommitdiff
path: root/src/raptor_serialize_rss.c
diff options
context:
space:
mode:
authorDave Beckett <dave@dajobe.org>2010-01-17 17:17:13 -0800
committerDave Beckett <dave@dajobe.org>2010-01-17 17:17:13 -0800
commit6b35b456ef7fba8aaf9d0d1a6ffe650208da5772 (patch)
tree5a5b08d9aafd8e839603144ccb919a096bf17bd7 /src/raptor_serialize_rss.c
parente794e440c608b87735f838d0ffff35a4ab9c9e65 (diff)
downloadraptor-6b35b456ef7fba8aaf9d0d1a6ffe650208da5772.tar.gz
Fix debug calls to raptor_print_statement_as_ntriples_v2 now called raptor_print_statement_as_ntriples
Diffstat (limited to 'src/raptor_serialize_rss.c')
-rw-r--r--src/raptor_serialize_rss.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/raptor_serialize_rss.c b/src/raptor_serialize_rss.c
index 029dcd15..ed6158cc 100644
--- a/src/raptor_serialize_rss.c
+++ b/src/raptor_serialize_rss.c
@@ -729,7 +729,7 @@ raptor_rss10_store_statement(raptor_rss10_serializer_context *rss_serializer,
raptor_sequence_push(rss_serializer->triples, s);
#if RAPTOR_DEBUG > 1
fprintf(stderr,"Stored statement: ");
- raptor_print_statement_as_ntriples_v2(s, stderr);
+ raptor_print_statement_as_ntriples(s, stderr);
fprintf(stderr,"\n");
#endif
handled = 1;
@@ -791,7 +791,7 @@ raptor_rss10_serialize_statement(raptor_serializer* serializer,
RAPTOR_DEBUG1("Processing statement\n ");
s2.s = (raptor_statement*)statement;
s2.world = rss_serializer->world;
- raptor_print_statement_as_ntriples_v2(&s2, stderr);
+ raptor_print_statement_as_ntriples(&s2, stderr);
fputc('\n', stderr);
}
#endif
@@ -928,7 +928,7 @@ raptor_rss10_build_items(raptor_rss10_serializer_context *rss_serializer)
#if RAPTOR_DEBUG > 1
RAPTOR_DEBUG1("Processing statement\n ");
- raptor_print_statement_as_ntriples_v2(s, stderr);
+ raptor_print_statement_as_ntriples(s, stderr);
fputc('\n', stderr);
#endif