]> git.cameronkatri.com Git - mandoc.git/commitdiff
Lint fixes in function call.
authorKristaps Dzonsons <kristaps@bsd.lv>
Tue, 10 Nov 2009 16:32:00 +0000 (16:32 +0000)
committerKristaps Dzonsons <kristaps@bsd.lv>
Tue, 10 Nov 2009 16:32:00 +0000 (16:32 +0000)
html.c

diff --git a/html.c b/html.c
index b2fc60645e39002ec14a7d9f0600833941233190..042f1641396392f3423062e19d3d27553f1c1827 100644 (file)
--- a/html.c
+++ b/html.c
@@ -1,4 +1,4 @@
-/*     $Id: html.c,v 1.82 2009/11/09 05:11:46 kristaps Exp $ */
+/*     $Id: html.c,v 1.83 2009/11/10 16:32:00 kristaps Exp $ */
 /*
  * Copyright (c) 2008, 2009 Kristaps Dzonsons <kristaps@kth.se>
  *
@@ -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;