=================================================================== RCS file: /cvs/mandoc/html.c,v retrieving revision 1.59 retrieving revision 1.61 diff -u -p -r1.59 -r1.61 --- mandoc/html.c 2009/10/07 14:39:00 1.59 +++ mandoc/html.c 2009/10/07 15:27:11 1.61 @@ -1,4 +1,4 @@ -/* $Id: html.c,v 1.59 2009/10/07 14:39:00 kristaps Exp $ */ +/* $Id: html.c,v 1.61 2009/10/07 15:27:11 kristaps Exp $ */ /* * Copyright (c) 2008, 2009 Kristaps Dzonsons * @@ -549,7 +549,8 @@ buffmt_includes(struct html *h, const char *name) const char *p, *pp; pp = h->base_includes; - while ((p = strchr(pp, '%'))) { + + while (NULL != (p = strchr(pp, '%'))) { bufncat(h, pp, (size_t)(p - pp)); switch (*(p + 1)) { case('I'): @@ -573,7 +574,9 @@ buffmt_man(struct html *h, const char *p, *pp; pp = h->base_man; - while ((p = strchr(pp, '%'))) { + + /* LINTED */ + while (NULL != (p = strchr(pp, '%'))) { bufncat(h, pp, (size_t)(p - pp)); switch (*(p + 1)) { case('S'):