diff options
author | Ingo Schwarze <schwarze@cvs.openbsd.org> | 2011-01-09 16:31:47 +0000 |
---|---|---|
committer | Ingo Schwarze <schwarze@cvs.openbsd.org> | 2011-01-09 16:31:47 +0000 |
commit | 2793167f73ceafc012e28c0a86dd4c62e26caa9c (patch) | |
tree | 09bf54b185845977cacaaadd2eebeeb3bef4d6a4 /usr.bin/mandoc | |
parent | b2d098b772c4b976ea90943ea909bd2e5f294f56 (diff) |
Remove an unused variable, and use int for array indices (not size_t);
found by lint(1), fixed by kristaps@, no functional change.
Diffstat (limited to 'usr.bin/mandoc')
-rw-r--r-- | usr.bin/mandoc/man_html.c | 8 | ||||
-rw-r--r-- | usr.bin/mandoc/mdoc_html.c | 9 |
2 files changed, 8 insertions, 9 deletions
diff --git a/usr.bin/mandoc/man_html.c b/usr.bin/mandoc/man_html.c index 075f7ddd187..042a1ef1cd0 100644 --- a/usr.bin/mandoc/man_html.c +++ b/usr.bin/mandoc/man_html.c @@ -1,4 +1,4 @@ -/* $Id: man_html.c,v 1.29 2011/01/04 22:28:17 schwarze Exp $ */ +/* $Id: man_html.c,v 1.30 2011/01/09 16:31:45 schwarze Exp $ */ /* * Copyright (c) 2008, 2009, 2010, 2011 Kristaps Dzonsons <kristaps@bsd.lv> * @@ -501,7 +501,6 @@ man_IP_pre(MAN_ARGS) struct roffsu su; struct htmlpair tag; const struct man_node *nn; - int width; /* * This scattering of 1-BU margins and pads is to make sure that @@ -519,13 +518,12 @@ man_IP_pre(MAN_ARGS) n->head->child : n->parent->head->child; SCALE_HS_INIT(&su, INDENT); - width = 0; /* Width is the second token. */ if (MAN_IP == n->tok && NULL != nn) if (NULL != (nn = nn->next)) - width = a2width(nn, &su); + a2width(nn, &su); /* Width is the first token. */ @@ -534,7 +532,7 @@ man_IP_pre(MAN_ARGS) while (nn && MAN_TEXT != nn->type) nn = nn->next; if (nn) - width = a2width(nn, &su); + a2width(nn, &su); } if (MAN_BLOCK == n->type) { diff --git a/usr.bin/mandoc/mdoc_html.c b/usr.bin/mandoc/mdoc_html.c index 427583b9711..fea03ced049 100644 --- a/usr.bin/mandoc/mdoc_html.c +++ b/usr.bin/mandoc/mdoc_html.c @@ -1,4 +1,4 @@ -/* $Id: mdoc_html.c,v 1.45 2011/01/04 22:28:17 schwarze Exp $ */ +/* $Id: mdoc_html.c,v 1.46 2011/01/09 16:31:46 schwarze Exp $ */ /* * Copyright (c) 2008, 2009, 2010 Kristaps Dzonsons <kristaps@bsd.lv> * @@ -826,6 +826,7 @@ mdoc_bx_pre(MDOC_ARGS) return(0); } +/* ARGSUSED */ static int mdoc_it_pre(MDOC_ARGS) { @@ -940,7 +941,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]; @@ -962,10 +963,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); |