aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2009-10-07 15:27:11 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2009-10-07 15:27:11 +0000
commitfd356cab42eeaef6e2483c0dc6fd4f242b369f5f (patch)
treec8862a6aaa7af387caee8c6d39382e89ca3a9d89
parent0e8ce409f93e322abb8f4e999f2bef84fc98604b (diff)
downloadmandoc-fd356cab42eeaef6e2483c0dc6fd4f242b369f5f.tar.gz
mandoc-fd356cab42eeaef6e2483c0dc6fd4f242b369f5f.tar.zst
mandoc-fd356cab42eeaef6e2483c0dc6fd4f242b369f5f.zip
Fixed side-effect of linting (oops).
-rw-r--r--html.c11
1 files changed, 6 insertions, 5 deletions
diff --git a/html.c b/html.c
index 075811e2..00094522 100644
--- 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'):