diff options
author | Ingo Schwarze <schwarze@openbsd.org> | 2018-12-25 00:06:25 +0000 |
---|---|---|
committer | Ingo Schwarze <schwarze@openbsd.org> | 2018-12-25 00:06:25 +0000 |
commit | 459c0d6c9f3fbbec6c4d7eeb54f0d373505f0329 (patch) | |
tree | 8958c7313afebbf4ca3903aedce8002916bc0864 /mdoc_html.c | |
parent | 7c9ae32d22c9c45b47b6d8220a4b4c538457f7ba (diff) | |
download | mandoc-459c0d6c9f3fbbec6c4d7eeb54f0d373505f0329.tar.gz |
bugfix: make the static class buffer long enough
for .Bl -bullet -compact -offset indent
Diffstat (limited to 'mdoc_html.c')
-rw-r--r-- | mdoc_html.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; |