Lintified (noops).
authorKristaps Dzonsons <kristaps@bsd.lv>
Sat, 3 Oct 2009 16:37:23 +0000 (16:37 +0000)
committerKristaps Dzonsons <kristaps@bsd.lv>
Sat, 3 Oct 2009 16:37:23 +0000 (16:37 +0000)
html.c

diff --git a/html.c b/html.c
index 02d77cbe8613dce48f3b07a15a8a4b92a3165caf..2c4195ed301c7f81cd981b4aaf7d75d7c6f54064 100644 (file)
--- a/html.c
+++ b/html.c
@@ -1,4 +1,4 @@
-/*     $Id: html.c,v 1.55 2009/10/03 16:36:06 kristaps Exp $ */
+/*     $Id: html.c,v 1.56 2009/10/03 16:37:23 kristaps Exp $ */
 /*
  * Copyright (c) 2008, 2009 Kristaps Dzonsons <kristaps@kth.se>
  *
@@ -511,11 +511,10 @@ buffmt(struct html *h, const char *fmt, ...)
        va_list          ap;
 
        va_start(ap, fmt);
-       (void)vsnprintf(h->buf + h->buflen, 
+       (void)vsnprintf(h->buf + (int)h->buflen, 
                        BUFSIZ - h->buflen - 1, fmt, ap);
        va_end(ap);
        h->buflen = strlen(h->buf);
-       assert('\0' == h->buf[h->buflen]);
 }
 
 
@@ -528,7 +527,6 @@ bufncat(struct html *h, const char *p, size_t sz)
 
        (void)strncat(h->buf, p, sz);
        h->buflen += sz;
-       assert('\0' == h->buf[h->buflen]);
 }
 
 
@@ -539,7 +537,7 @@ buffmt_includes(struct html *h, const char *name)
 
        pp = h->base_includes;
        while ((p = strchr(pp, '%'))) {
-               bufncat(h, pp, p - pp);
+               bufncat(h, pp, (size_t)(p - pp));
                switch (*(p + 1)) {
                case('I'):
                        bufcat(h, name);
@@ -563,7 +561,7 @@ buffmt_man(struct html *h,
 
        pp = h->base_man;
        while ((p = strchr(pp, '%'))) {
-               bufncat(h, pp, p - pp);
+               bufncat(h, pp, (size_t)(p - pp));
                switch (*(p + 1)) {
                case('S'):
                        bufcat(h, sec);