summaryrefslogtreecommitdiffstatshomepage
path: root/html.c
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2009-10-07 15:06:03 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2009-10-07 15:06:03 +0000
commit0e8ce409f93e322abb8f4e999f2bef84fc98604b (patch)
tree0900b9bbcc93cbfa81e989e802120a27bc5c92d1 /html.c
parent12c59411c4adf333715dc85394a72cbbab885859 (diff)
downloadmandoc-0e8ce409f93e322abb8f4e999f2bef84fc98604b.tar.gz
mandoc-0e8ce409f93e322abb8f4e999f2bef84fc98604b.tar.zst
mandoc-0e8ce409f93e322abb8f4e999f2bef84fc98604b.zip
Lint-ified.
Diffstat (limited to 'html.c')
-rw-r--r--html.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/html.c b/html.c
index f61002dd..075811e2 100644
--- a/html.c
+++ b/html.c
@@ -1,4 +1,4 @@
-/* $Id: html.c,v 1.59 2009/10/07 14:39:00 kristaps Exp $ */
+/* $Id: html.c,v 1.60 2009/10/07 15:06:03 kristaps Exp $ */
/*
* Copyright (c) 2008, 2009 Kristaps Dzonsons <kristaps@kth.se>
*
@@ -549,7 +549,8 @@ buffmt_includes(struct html *h, const char *name)
const char *p, *pp;
pp = h->base_includes;
- while ((p = strchr(pp, '%'))) {
+ p = strchr(pp, '%');
+ while (NULL != p) {
bufncat(h, pp, (size_t)(p - pp));
switch (*(p + 1)) {
case('I'):
@@ -573,7 +574,8 @@ buffmt_man(struct html *h,
const char *p, *pp;
pp = h->base_man;
- while ((p = strchr(pp, '%'))) {
+ p = strchr(pp, '%');
+ while (NULL != p) {
bufncat(h, pp, (size_t)(p - pp));
switch (*(p + 1)) {
case('S'):