aboutsummaryrefslogtreecommitdiffstats
path: root/src/writer.c
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2019-03-10 12:43:14 +0100
committerDavid Robillard <d@drobilla.net>2019-04-13 19:48:23 +0200
commit5cd753ba82535641b6dccb0064110f1bc8e22804 (patch)
tree6e2b01cf0183c039b0c49990f1e3b9e9db3ca0f3 /src/writer.c
parentb568e02a8cb0ec81e297847f31e1f59ce0c7997a (diff)
downloadserd-5cd753ba82535641b6dccb0064110f1bc8e22804.tar.gz
serd-5cd753ba82535641b6dccb0064110f1bc8e22804.tar.bz2
serd-5cd753ba82535641b6dccb0064110f1bc8e22804.zip
Rename SERD_STYLE_ASCII to SERD_WRITE_ASCII
Diffstat (limited to 'src/writer.c')
-rw-r--r--src/writer.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/writer.c b/src/writer.c
index 08e9ae17..62dcc3b3 100644
--- a/src/writer.c
+++ b/src/writer.c
@@ -195,7 +195,7 @@ write_character(SerdWriter* writer, const uint8_t* utf8, size_t* size)
break;
}
- if (!(writer->flags & SERD_STYLE_ASCII)) {
+ if (!(writer->flags & SERD_WRITE_ASCII)) {
// Write UTF-8 character directly to UTF-8 output
return sink(utf8, *size, writer);
}