aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2020-08-14 16:31:24 +0200
committerDavid Robillard <d@drobilla.net>2020-08-14 19:07:52 +0200
commitbc01889ccdfff3b39a93a537c9e92745d327e5da (patch)
treeaf4e15a6b0172c06d87d54fbc756e0ab40280b24
parent31fb42796f0adb6dc5e7b2f84539b734e7a2262e (diff)
downloadserd-bc01889ccdfff3b39a93a537c9e92745d327e5da.tar.gz
serd-bc01889ccdfff3b39a93a537c9e92745d327e5da.tar.bz2
serd-bc01889ccdfff3b39a93a537c9e92745d327e5da.zip
Fix incorrect separator length
-rw-r--r--src/writer.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/writer.c b/src/writer.c
index 61ff9864..81e0a845 100644
--- a/src/writer.c
+++ b/src/writer.c
@@ -86,7 +86,7 @@ static const SepRule rules[] = {
{ "[", 1, 0, 1, 1 },
{ "]", 1, 1, 0, 0 },
{ "(", 1, 0, 0, 0 },
- { NULL, 1, 0, 1, 0 },
+ { NULL, 0, 0, 1, 0 },
{ ")", 1, 1, 0, 0 },
{ " {", 2, 0, 1, 1 },
{ " }", 2, 0, 1, 1 },