aboutsummaryrefslogtreecommitdiffstats
path: root/src/writer.c
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2012-01-16 18:27:09 +0000
committerDavid Robillard <d@drobilla.net>2012-01-16 18:27:09 +0000
commite3dcfd6ac49e2657fa8b7f707c4a01f20f40cc69 (patch)
treed3847f5fc36cc2e83b41fe04d35206afa04c179b /src/writer.c
parent2d724f0e199f74201307cc161031afbd8dba4eb5 (diff)
downloadserd-e3dcfd6ac49e2657fa8b7f707c4a01f20f40cc69.tar.gz
serd-e3dcfd6ac49e2657fa8b7f707c4a01f20f40cc69.tar.bz2
serd-e3dcfd6ac49e2657fa8b7f707c4a01f20f40cc69.zip
Fix compilation on sane platforms.
git-svn-id: http://svn.drobilla.net/serd/trunk@292 490d8e77-9747-427b-9fa3-0b8f29cee8a0
Diffstat (limited to 'src/writer.c')
-rw-r--r--src/writer.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/writer.c b/src/writer.c
index 26b06690..0ea4ea06 100644
--- a/src/writer.c
+++ b/src/writer.c
@@ -31,7 +31,9 @@ typedef struct {
} WriteContext;
static const WriteContext WRITE_CONTEXT_NULL = {
- SERD_NODE_NULL, SERD_NODE_NULL, SERD_NODE_NULL
+ { 0, 0, 0, 0, SERD_NOTHING },
+ { 0, 0, 0, 0, SERD_NOTHING },
+ { 0, 0, 0, 0, SERD_NOTHING }
};
struct SerdWriterImpl {