diff options
-rw-r--r-- | html.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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); |