]> git.cameronkatri.com Git - mandoc.git/commitdiff
Fixed side-effect of linting (oops).
authorKristaps Dzonsons <kristaps@bsd.lv>
Wed, 7 Oct 2009 15:27:11 +0000 (15:27 +0000)
committerKristaps Dzonsons <kristaps@bsd.lv>
Wed, 7 Oct 2009 15:27:11 +0000 (15:27 +0000)
html.c

diff --git a/html.c b/html.c
index 075811e2ff739fe1c3204fa8be0e199d07fb39cb..000945224075fef7a7dbd3e89cb06a460b4e3bf9 100644 (file)
--- a/html.c
+++ b/html.c
@@ -1,4 +1,4 @@
-/*     $Id: html.c,v 1.60 2009/10/07 15:06:03 kristaps Exp $ */
+/*     $Id: html.c,v 1.61 2009/10/07 15:27:11 kristaps Exp $ */
 /*
  * Copyright (c) 2008, 2009 Kristaps Dzonsons <kristaps@kth.se>
  *
@@ -549,8 +549,8 @@ buffmt_includes(struct html *h, const char *name)
        const char      *p, *pp;
 
        pp = h->base_includes;
-       p = strchr(pp, '%');
-       while (NULL != p) {
+       
+       while (NULL != (p = strchr(pp, '%'))) {
                bufncat(h, pp, (size_t)(p - pp));
                switch (*(p + 1)) {
                case('I'):
@@ -574,8 +574,9 @@ buffmt_man(struct html *h,
        const char      *p, *pp;
 
        pp = h->base_man;
-       p = strchr(pp, '%');
-       while (NULL != p) {
+       
+       /* LINTED */
+       while (NULL != (p = strchr(pp, '%'))) {
                bufncat(h, pp, (size_t)(p - pp));
                switch (*(p + 1)) {
                case('S'):