summaryrefslogtreecommitdiff
path: root/src/raptor_serialize_ntriples.c
diff options
context:
space:
mode:
authorDave Beckett <dave@dajobe.org>2010-05-16 13:35:58 -0700
committerDave Beckett <dave@dajobe.org>2010-05-16 13:35:58 -0700
commit285d5f8a6b8edc031166f3c6b249027c6fac5e74 (patch)
tree2ac1085fabf7fa04ffa7357047a69a8622c89e81 /src/raptor_serialize_ntriples.c
parent7ff1fe93f84bdc5be0b729c063d297f341db7878 (diff)
downloadraptor-285d5f8a6b8edc031166f3c6b249027c6fac5e74.tar.gz
raptor_term blank is now a new typedef raptor_term_blank_value with length field.
Update all callers
Diffstat (limited to 'src/raptor_serialize_ntriples.c')
-rw-r--r--src/raptor_serialize_ntriples.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/raptor_serialize_ntriples.c b/src/raptor_serialize_ntriples.c
index 2b8dede5..44ec5267 100644
--- a/src/raptor_serialize_ntriples.c
+++ b/src/raptor_serialize_ntriples.c
@@ -153,7 +153,7 @@ raptor_term_ntriples_write(const raptor_term *term, raptor_iostream* iostr)
case RAPTOR_TERM_TYPE_BLANK:
raptor_iostream_counted_string_write("_:", 2, iostr);
- raptor_iostream_string_write(term->value.blank, iostr);
+ raptor_iostream_string_write(term->value.blank.string, iostr);
break;
case RAPTOR_TERM_TYPE_URI: