summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2009-11-10 16:32:00 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2009-11-10 16:32:00 +0000
commit4934817fcd9985cac503abb5fc2590868c69b397 (patch)
tree7e7038e62ccf1d09fffdb86f8c77220e5b6bbd03
parent2793c65b8cb0a40a1c755e54be5203e5bd1c8e96 (diff)
downloadmandoc-4934817fcd9985cac503abb5fc2590868c69b397.tar.gz
Lint fixes in function call.
-rw-r--r--html.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/html.c b/html.c
index 079b778a..8b6279f5 100644
--- a/html.c
+++ b/html.c
@@ -88,8 +88,8 @@ extern int getsubopt(char **, char * const *, char **);
#endif
-static void print_spec(struct html *, const char *, int);
-static void print_res(struct html *, const char *, int);
+static void print_spec(struct html *, const char *, size_t);
+static void print_res(struct html *, const char *, size_t);
static void print_ctag(struct html *, enum htmltag);
static void print_encode(struct html *, const char *);
@@ -193,12 +193,12 @@ print_gen_head(struct html *h)
static void
-print_spec(struct html *h, const char *p, int len)
+print_spec(struct html *h, const char *p, size_t len)
{
const char *rhs;
size_t sz;
- rhs = chars_a2ascii(h->symtab, p, (size_t)len, &sz);
+ rhs = chars_a2ascii(h->symtab, p, len, &sz);
if (NULL == rhs)
return;
@@ -207,12 +207,12 @@ print_spec(struct html *h, const char *p, int len)
static void
-print_res(struct html *h, const char *p, int len)
+print_res(struct html *h, const char *p, size_t len)
{
const char *rhs;
size_t sz;
- rhs = chars_a2res(h->symtab, p, (size_t)len, &sz);
+ rhs = chars_a2res(h->symtab, p, len, &sz);
if (NULL == rhs)
return;