Increase buffer size to avoid truncating styles, GitHub issue 3809 from

Ricardo Bittencourt.
pull/3798/merge
nicm 2024-01-22 16:34:46 +00:00
parent 2e39d698d2
commit 428f8a9b28
1 changed files with 1 additions and 1 deletions

View File

@ -242,7 +242,7 @@ style_tostring(struct style *sy)
int off = 0;
const char *comma = "", *tmp = "";
static char s[256];
char b[16];
char b[21];
*s = '\0';