aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2018-11-12 09:40:20 +0100
committerDavid Robillard <d@drobilla.net>2019-12-19 20:55:41 -0500
commitda81e4dda0a60dd427553ce3143b06c08eaf7c9f (patch)
tree2333bb481ec57087a0f98d32874edf13561bfb0c
parent1caa335dfe89da0a4d3190d02b133f34fb68ec74 (diff)
downloadserd-da81e4dda0a60dd427553ce3143b06c08eaf7c9f.tar.gz
serd-da81e4dda0a60dd427553ce3143b06c08eaf7c9f.tar.bz2
serd-da81e4dda0a60dd427553ce3143b06c08eaf7c9f.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 90fdbb4c..c0d47863 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 {