diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2011-01-07 13:20:58 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2011-01-07 13:20:58 +0000 |
commit | cbbbfb105eb8cfbcc27f89142cba69b42db39f7d (patch) | |
tree | b7cab75a0ae8f64d4be4b55ddaeeda14365789c3 /mdoc_html.c | |
parent | a3c093fb3143635348eebf55d192d7462c3ff1d1 (diff) | |
download | mandoc-cbbbfb105eb8cfbcc27f89142cba69b42db39f7d.tar.gz |
Quiesce lint with some type handling. Does not change anything.
Diffstat (limited to 'mdoc_html.c')
-rw-r--r-- | mdoc_html.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/mdoc_html.c b/mdoc_html.c index 093b5607..4de1115d 100644 --- a/mdoc_html.c +++ b/mdoc_html.c @@ -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); |