diff options
author | Ingo Schwarze <schwarze@cvs.openbsd.org> | 2018-12-25 00:05:39 +0000 |
---|---|---|
committer | Ingo Schwarze <schwarze@cvs.openbsd.org> | 2018-12-25 00:05:39 +0000 |
commit | 7dd4ca75be14b87c74f63c39b0be0185231bb123 (patch) | |
tree | 75f186c4995843024529bf49ff77595ff6fb09cf /usr.bin | |
parent | 63ca5350059d9ce3a9d6aee29cfbd3b8ad106c22 (diff) |
bugfix: make the static class buffer long enough
for .Bl -bullet -compact -offset indent
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/mandoc/mdoc_html.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/mandoc/mdoc_html.c b/usr.bin/mandoc/mdoc_html.c index 2a85ac16eef..e8c7e6b78e9 100644 --- a/usr.bin/mandoc/mdoc_html.c +++ b/usr.bin/mandoc/mdoc_html.c @@ -1,4 +1,4 @@ -/* $OpenBSD: mdoc_html.c,v 1.194 2018/12/22 19:48:46 schwarze Exp $ */ +/* $OpenBSD: mdoc_html.c,v 1.195 2018/12/25 00:05:38 schwarze Exp $ */ /* * Copyright (c) 2008-2011, 2014 Kristaps Dzonsons <kristaps@bsd.lv> * Copyright (c) 2014,2015,2016,2017,2018 Ingo Schwarze <schwarze@openbsd.org> @@ -794,7 +794,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; |