=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/mandoc/mdoc_html.c,v retrieving revision 1.94 retrieving revision 1.95 diff -c -r1.94 -r1.95 *** src/usr.bin/mandoc/mdoc_html.c 2015/01/23 14:19:52 1.94 --- src/usr.bin/mandoc/mdoc_html.c 2015/01/30 22:04:15 1.95 *************** *** 1,4 **** ! /* $OpenBSD: mdoc_html.c,v 1.94 2015/01/23 14:19:52 schwarze Exp $ */ /* * Copyright (c) 2008-2011, 2014 Kristaps Dzonsons * Copyright (c) 2014, 2015 Ingo Schwarze --- 1,4 ---- ! /* $OpenBSD: mdoc_html.c,v 1.95 2015/01/30 22:04:15 schwarze Exp $ */ /* * Copyright (c) 2008-2011, 2014 Kristaps Dzonsons * Copyright (c) 2014, 2015 Ingo Schwarze *************** *** 369,377 **** print_mdoc_nodelist(MDOC_ARGS) { ! print_mdoc_node(meta, n, h); ! if (n->next) ! print_mdoc_nodelist(meta, n->next, h); } static void --- 369,378 ---- print_mdoc_nodelist(MDOC_ARGS) { ! while (n != NULL) { ! print_mdoc_node(meta, n, h); ! n = n->next; ! } } static void