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>2018-12-31 11:37:49 -0500
commitfcc49e5e55e089234d5535c5a489a4e97abedf08 (patch)
tree3961f48c09d32a5ddb0866a3b4de838e87e951b4 /src/writer.c
parent64d6f4eee1d5014b25f366e1615bb8ad39e667f7 (diff)
downloadserd-fcc49e5e55e089234d5535c5a489a4e97abedf08.tar.gz
serd-fcc49e5e55e089234d5535c5a489a4e97abedf08.tar.bz2
serd-fcc49e5e55e089234d5535c5a489a4e97abedf08.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 90395a0b..ebaba3b3 100644
--- a/src/writer.c
+++ b/src/writer.c
@@ -100,24 +100,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 {