=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/mandoc/man_validate.c,v retrieving revision 1.85 retrieving revision 1.86 diff -c -r1.85 -r1.86 *** src/usr.bin/mandoc/man_validate.c 2015/04/02 21:03:18 1.85 --- src/usr.bin/mandoc/man_validate.c 2015/04/02 22:06:17 1.86 *************** *** 1,4 **** ! /* $OpenBSD: man_validate.c,v 1.85 2015/04/02 21:03:18 schwarze Exp $ */ /* * Copyright (c) 2008, 2009, 2010, 2011 Kristaps Dzonsons * Copyright (c) 2010, 2012-2015 Ingo Schwarze --- 1,4 ---- ! /* $OpenBSD: man_validate.c,v 1.86 2015/04/02 22:06:17 schwarze Exp $ */ /* * Copyright (c) 2008, 2009, 2010, 2011 Kristaps Dzonsons * Copyright (c) 2010, 2012-2015 Ingo Schwarze *************** *** 33,39 **** #include "libmandoc.h" #include "libman.h" ! #define CHKARGS struct man *man, struct man_node *n typedef void (*v_check)(CHKARGS); --- 33,39 ---- #include "libmandoc.h" #include "libman.h" ! #define CHKARGS struct man *man, struct roff_node *n typedef void (*v_check)(CHKARGS); *************** *** 98,104 **** void man_valid_post(struct man *man) { ! struct man_node *n; v_check *cp; n = man->last; --- 98,104 ---- void man_valid_post(struct man *man) { ! struct roff_node *n; v_check *cp; n = man->last; *************** *** 298,304 **** static void post_TH(CHKARGS) { ! struct man_node *nb; const char *p; free(man->meta.title); --- 298,304 ---- static void post_TH(CHKARGS) { ! struct roff_node *nb; const char *p; free(man->meta.title); *************** *** 458,465 **** "System V Release 2", }; const char *p, *s; - struct man_node *nn; n = n->child; --- 458,465 ---- "System V Release 2", }; + struct roff_node *nn; const char *p, *s; n = n->child;