summaryrefslogtreecommitdiff
path: root/src/raptor_serialize_ntriples.c
diff options
context:
space:
mode:
authorDave Beckett <dave@dajobe.org>2010-01-05 18:50:00 -0800
committerDave Beckett <dave@dajobe.org>2010-01-05 18:50:00 -0800
commit074e2ecf23d821f7731ef880fd3788e1d92926b2 (patch)
treeb3c5d1e1e81754eb5d76b5f40f49ac62f4679ef8 /src/raptor_serialize_ntriples.c
parent9c72b22bb44f9f49fc776d0b48f860133f004f61 (diff)
downloadraptor-074e2ecf23d821f7731ef880fd3788e1d92926b2.tar.gz
Code style - whitespace around assignment and comparison ops
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 34dbbd21..f3e2616b 100644
--- a/src/raptor_serialize_ntriples.c
+++ b/src/raptor_serialize_ntriples.c
@@ -164,7 +164,7 @@ raptor_iostream_write_statement_part_ntriples(raptor_world* world,
case RAPTOR_IDENTIFIER_TYPE_RESOURCE:
case RAPTOR_IDENTIFIER_TYPE_PREDICATE:
raptor_iostream_write_byte(iostr, '<');
- term=raptor_uri_as_counted_string_v2(world, (raptor_uri*)term, &len);
+ term = raptor_uri_as_counted_string_v2(world, (raptor_uri*)term, &len);
raptor_iostream_write_string_ntriples(iostr, (const unsigned char*)term, len, '>');
raptor_iostream_write_byte(iostr, '>');
break;