aboutsummaryrefslogtreecommitdiffstats
path: root/src/writer.c
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2011-01-23 08:53:14 +0000
committerDavid Robillard <d@drobilla.net>2011-01-23 08:53:14 +0000
commit5de15ccf0a0216e5aadd93ab9095bf15279bfb7c (patch)
tree94f737be18568e3401afa283d04c035a8c16fe6b /src/writer.c
parent5daf94366eddd472cc34ce2af9ebc921167d2c7a (diff)
downloadserd-5de15ccf0a0216e5aadd93ab9095bf15279bfb7c.tar.gz
serd-5de15ccf0a0216e5aadd93ab9095bf15279bfb7c.tar.bz2
serd-5de15ccf0a0216e5aadd93ab9095bf15279bfb7c.zip
Code cleanup (appease cpplint).
git-svn-id: http://svn.drobilla.net/serd/trunk@45 490d8e77-9747-427b-9fa3-0b8f29cee8a0
Diffstat (limited to 'src/writer.c')
-rw-r--r--src/writer.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/writer.c b/src/writer.c
index aa9b7b76..93a2e4d1 100644
--- a/src/writer.c
+++ b/src/writer.c
@@ -205,7 +205,7 @@ write_node(SerdWriter writer,
case SERD_ANON:
if (writer->syntax != SERD_NTRIPLES) {
break;
- } // else fall through
+ } // else fall through
case SERD_BLANK_ID:
writer->sink("_:", 2, writer->stream);
writer->sink(str->buf, str->n_bytes - 1, writer->stream);
@@ -430,7 +430,7 @@ serd_writer_new(SerdSyntax syntax,
writer->anon_stack = serd_stack_new(sizeof(WriteContext));
writer->sink = sink;
writer->stream = stream;
- writer->context = context;
+ writer->context = context;
writer->indent = 0;
writer->write_node = write_node;
if ((style & SERD_STYLE_ABBREVIATED)) {