]> git.cameronkatri.com Git - mandoc.git/blobdiff - html.c
Added mandoc_a2time() for proper date conversion.
[mandoc.git] / html.c
diff --git a/html.c b/html.c
index 47171298685a4e8dd3d5cdf567f3f709d45a0b19..5f921ad7c101e4fbd9d303bdb21ca545dc9cccd7 100644 (file)
--- a/html.c
+++ b/html.c
@@ -1,4 +1,4 @@
-/*     $Id: html.c,v 1.78 2009/11/01 15:34:15 kristaps Exp $ */
+/*     $Id: html.c,v 1.80 2009/11/02 06:22:44 kristaps Exp $ */
 /*
  * Copyright (c) 2008, 2009 Kristaps Dzonsons <kristaps@kth.se>
  *
@@ -322,7 +322,8 @@ print_encode(struct html *h, const char *p)
                sz = strcspn(p, "\\<>&");
 
                fwrite(p, 1, sz, stdout);
-               p += sz;
+               p += /* LINTED */
+                       sz;
 
                if ('\\' == *p) {
                        print_escape(h, &p);