summaryrefslogtreecommitdiffstats
path: root/html.c
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2009-11-01 15:34:44 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2009-11-01 15:34:44 +0000
commit768ae2f18e90273f3a363fe0374c8dc61ecff26b (patch)
tree42dc63a84321a1aa1aa0ba56f28f3780d63dbe95 /html.c
parent1d0badd450552ab18120742b98fe5d79645d4e2e (diff)
downloadmandoc-768ae2f18e90273f3a363fe0374c8dc61ecff26b.tar.gz
Lint fix.
Diffstat (limited to 'html.c')
-rw-r--r--html.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/html.c b/html.c
index ce6c8032..44988858 100644
--- a/html.c
+++ b/html.c
@@ -322,7 +322,7 @@ print_encode(struct html *h, const char *p)
sz = strcspn(p, "\\<>&");
fwrite(p, 1, sz, stdout);
- p += sz;
+ p += (int)sz;
if ('\\' == *p) {
print_escape(h, &p);