diff options
author | David Robillard <d@drobilla.net> | 2020-08-14 16:31:24 +0200 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2020-08-14 19:07:52 +0200 |
commit | bc01889ccdfff3b39a93a537c9e92745d327e5da (patch) | |
tree | af4e15a6b0172c06d87d54fbc756e0ab40280b24 | |
parent | 31fb42796f0adb6dc5e7b2f84539b734e7a2262e (diff) | |
download | serd-bc01889ccdfff3b39a93a537c9e92745d327e5da.tar.gz serd-bc01889ccdfff3b39a93a537c9e92745d327e5da.tar.bz2 serd-bc01889ccdfff3b39a93a537c9e92745d327e5da.zip |
Fix incorrect separator length
-rw-r--r-- | src/writer.c | 2 |
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 }, |