diff options
author | David Robillard <d@drobilla.net> | 2018-11-12 09:40:20 +0100 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2018-11-25 22:12:47 +0100 |
commit | 42e9deaa801f657c09cef642d38f66b4bebf1a9c (patch) | |
tree | 2996468a5033cdad85ff1c8febef2001119d33bb | |
parent | fd021f96b68c338c3cb649c69b03f48a8f74febf (diff) | |
download | serd-42e9deaa801f657c09cef642d38f66b4bebf1a9c.tar.gz serd-42e9deaa801f657c09cef642d38f66b4bebf1a9c.tar.bz2 serd-42e9deaa801f657c09cef642d38f66b4bebf1a9c.zip |
Fix writer flags type
-rw-r--r-- | src/writer.c | 36 |
1 files changed, 18 insertions, 18 deletions
diff --git a/src/writer.c b/src/writer.c index 7b00eaa9..24f00429 100644 --- a/src/writer.c +++ b/src/writer.c @@ -99,24 +99,24 @@ static const SepRule rules[] = { }; struct SerdWriterImpl { - SerdWorld* world; - SerdSink iface; - SerdSyntax syntax; - SerdStyle style; - SerdEnv* env; - SerdNode* root_node; - SerdURI root_uri; - SerdStack anon_stack; - SerdWriteFunc write_func; - void* stream; - SerdErrorSink error_sink; - void* error_handle; - WriteContext context; - unsigned indent; - char* bprefix; - size_t bprefix_len; - Sep last_sep; - bool empty; + SerdWorld* world; + SerdSink iface; + SerdSyntax syntax; + SerdStyleFlags style; + SerdEnv* env; + SerdNode* root_node; + SerdURI root_uri; + SerdStack anon_stack; + SerdWriteFunc write_func; + void* stream; + SerdErrorSink error_sink; + void* error_handle; + WriteContext context; + unsigned indent; + char* bprefix; + size_t bprefix_len; + Sep last_sep; + bool empty; }; typedef enum { |