From 459c0d6c9f3fbbec6c4d7eeb54f0d373505f0329 Mon Sep 17 00:00:00 2001 From: Ingo Schwarze Date: Tue, 25 Dec 2018 00:06:25 +0000 Subject: bugfix: make the static class buffer long enough for .Bl -bullet -compact -offset indent --- mdoc_html.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mdoc_html.c b/mdoc_html.c index f2219440..99d48992 100644 --- a/mdoc_html.c +++ b/mdoc_html.c @@ -796,7 +796,7 @@ mdoc_it_pre(MDOC_ARGS) static int mdoc_bl_pre(MDOC_ARGS) { - char cattr[28]; + char cattr[32]; struct mdoc_bl *bl; enum htmltag elemtype; -- cgit