diff options
author | 2015-04-18 16:04:40 +0000 | |
---|---|---|
committer | 2015-04-18 16:04:40 +0000 | |
commit | ede1b9d0649da5ccb8121a22b29e35a968495858 (patch) | |
tree | a005c46b30f7589352b86b3bd7d91c7a882e3e6d /usr.bin/mandoc/mdoc_html.c | |
parent | another round of reducing the diff to linux (diff) | |
download | wireguard-openbsd-ede1b9d0649da5ccb8121a22b29e35a968495858.tar.xz wireguard-openbsd-ede1b9d0649da5ccb8121a22b29e35a968495858.zip |
Replace the structs mdoc and man by a unified struct roff_man.
Almost completely mechanical, no functional change.
Written on the train from Exeter to London returning from p2k15.
Diffstat (limited to 'usr.bin/mandoc/mdoc_html.c')
-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 c0fea15cde0..7720dfb0142 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.105 2015/04/16 20:21:08 schwarze Exp $ */ +/* $OpenBSD: mdoc_html.c,v 1.106 2015/04/18 16:04:40 schwarze Exp $ */ /* * Copyright (c) 2008-2011, 2014 Kristaps Dzonsons <kristaps@bsd.lv> * Copyright (c) 2014, 2015 Ingo Schwarze <schwarze@openbsd.org> @@ -263,7 +263,7 @@ static const char * const lists[LIST_MAX] = { void -html_mdoc(void *arg, const struct mdoc *mdoc) +html_mdoc(void *arg, const struct roff_man *mdoc) { print_mdoc(mdoc_meta(mdoc), mdoc_node(mdoc)->child, |