summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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);