=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/mandoc/tree.c,v retrieving revision 1.3 retrieving revision 1.4 diff -c -r1.3 -r1.4 *** src/usr.bin/mandoc/tree.c 2009/08/22 20:14:37 1.3 --- src/usr.bin/mandoc/tree.c 2009/09/21 20:57:57 1.4 *************** *** 1,4 **** ! /* $Id: tree.c,v 1.3 2009/08/22 20:14:37 schwarze Exp $ */ /* * Copyright (c) 2008, 2009 Kristaps Dzonsons * --- 1,4 ---- ! /* $Id: tree.c,v 1.4 2009/09/21 20:57:57 schwarze Exp $ */ /* * Copyright (c) 2008, 2009 Kristaps Dzonsons * *************** *** 27,48 **** /* ARGSUSED */ ! int tree_mdoc(void *arg, const struct mdoc *mdoc) { print_mdoc(mdoc_node(mdoc), 0); - return(1); } /* ARGSUSED */ ! int tree_man(void *arg, const struct man *man) { print_man(man_node(man), 0); - return(1); } --- 27,46 ---- /* ARGSUSED */ ! void tree_mdoc(void *arg, const struct mdoc *mdoc) { print_mdoc(mdoc_node(mdoc), 0); } /* ARGSUSED */ ! void tree_man(void *arg, const struct man *man) { print_man(man_node(man), 0); }