aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2018-11-12 09:40:20 +0100
committerDavid Robillard <d@drobilla.net>2020-06-21 18:12:04 +0200
commit6bb81f3596d96d8334a484cd3ebfdb10baab4861 (patch)
treec2894370ae89f2007071152af7479606b4f7f974
parent5a83b1fcda6b091c224b1f1681ea7357ac805c92 (diff)
downloadserd-6bb81f3596d96d8334a484cd3ebfdb10baab4861.tar.gz
serd-6bb81f3596d96d8334a484cd3ebfdb10baab4861.tar.bz2
serd-6bb81f3596d96d8334a484cd3ebfdb10baab4861.zip
Fix writer flags type
-rw-r--r--src/writer.c36
1 files changed, 18 insertions, 18 deletions
diff --git a/src/writer.c b/src/writer.c
index f81f108c..d598e43a 100644
--- a/src/writer.c
+++ b/src/writer.c
@@ -104,24 +104,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 {