From bc01889ccdfff3b39a93a537c9e92745d327e5da Mon Sep 17 00:00:00 2001 From: David Robillard Date: Fri, 14 Aug 2020 16:31:24 +0200 Subject: Fix incorrect separator length --- src/writer.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 }, -- cgit v1.2.1