diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2009-11-01 15:34:44 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2009-11-01 15:34:44 +0000 |
commit | 768ae2f18e90273f3a363fe0374c8dc61ecff26b (patch) | |
tree | 42dc63a84321a1aa1aa0ba56f28f3780d63dbe95 | |
parent | 1d0badd450552ab18120742b98fe5d79645d4e2e (diff) | |
download | mandoc-768ae2f18e90273f3a363fe0374c8dc61ecff26b.tar.gz |
Lint fix.
-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); |