aboutsummaryrefslogtreecommitdiffstats
path: root/src/writer.c
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2018-11-12 09:40:20 +0100
committerDavid Robillard <d@drobilla.net>2019-04-13 19:15:32 +0200
commit2c1e1f7646f2fb18d359730e2cc6267d285f621f (patch)
tree7fb092b98b23857e3be2342c9f2998e8bda3057d /src/writer.c
parent1e1fc363c507bbe5360979fd8319ede6ce531ab7 (diff)
downloadserd-2c1e1f7646f2fb18d359730e2cc6267d285f621f.tar.gz
serd-2c1e1f7646f2fb18d359730e2cc6267d285f621f.tar.bz2
serd-2c1e1f7646f2fb18d359730e2cc6267d285f621f.zip
Fix writer flags type
Diffstat (limited to 'src/writer.c')
-rw-r--r--src/writer.c36
1 files changed, 18 insertions, 18 deletions
diff --git a/src/writer.c b/src/writer.c
index 2db925ef..fd1dc043 100644
--- a/src/writer.c
+++ b/src/writer.c
@@ -101,24 +101,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 {