summaryrefslogtreecommitdiffstatshomepage
path: root/mdoc_html.c
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2011-01-07 13:20:58 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2011-01-07 13:20:58 +0000
commitd5e33853a27c639beda0a85062ce7db9996e22e1 (patch)
tree6e2bcd44baf1deeb6a5fd52d642aa0ef46d23586 /mdoc_html.c
parentcad1b7856f01e0acd83188b5b923676a51f8a891 (diff)
downloadmandoc-d5e33853a27c639beda0a85062ce7db9996e22e1.tar.gz
mandoc-d5e33853a27c639beda0a85062ce7db9996e22e1.tar.zst
mandoc-d5e33853a27c639beda0a85062ce7db9996e22e1.zip
Quiesce lint with some type handling. Does not change anything.
Diffstat (limited to 'mdoc_html.c')
-rw-r--r--mdoc_html.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/mdoc_html.c b/mdoc_html.c
index 52169447..44b41d2f 100644
--- a/mdoc_html.c
+++ b/mdoc_html.c
@@ -1,4 +1,4 @@
-/* $Id: mdoc_html.c,v 1.141 2011/01/04 10:29:41 kristaps Exp $ */
+/* $Id: mdoc_html.c,v 1.142 2011/01/07 13:20:58 kristaps Exp $ */
/*
* Copyright (c) 2008, 2009, 2010 Kristaps Dzonsons <kristaps@bsd.lv>
*
@@ -830,6 +830,7 @@ mdoc_bx_pre(MDOC_ARGS)
return(0);
}
+/* ARGSUSED */
static int
mdoc_it_pre(MDOC_ARGS)
{
@@ -944,7 +945,7 @@ mdoc_it_pre(MDOC_ARGS)
static int
mdoc_bl_pre(MDOC_ARGS)
{
- size_t i;
+ int i;
struct htmlpair tag[3];
struct roffsu su;
char buf[BUFSIZ];
@@ -966,10 +967,10 @@ mdoc_bl_pre(MDOC_ARGS)
* screen and we want to preserve that behaviour.
*/
- for (i = 0; i < n->norm->Bl.ncols; i++) {
+ for (i = 0; i < (int)n->norm->Bl.ncols; i++) {
a2width(n->norm->Bl.cols[i], &su);
bufinit(h);
- if (i < n->norm->Bl.ncols - 1)
+ if (i < (int)n->norm->Bl.ncols - 1)
bufcat_su(h, "width", &su);
else
bufcat_su(h, "min-width", &su);