=================================================================== RCS file: /cvs/mandoc/Attic/xml.c,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- mandoc/Attic/xml.c 2008/12/02 00:10:37 1.6 +++ mandoc/Attic/xml.c 2008/12/02 00:15:41 1.7 @@ -1,4 +1,4 @@ -/* $Id: xml.c,v 1.6 2008/12/02 00:10:37 kristaps Exp $ */ +/* $Id: xml.c,v 1.7 2008/12/02 00:15:41 kristaps Exp $ */ /* * Copyright (c) 2008 Kristaps Dzonsons * @@ -167,9 +167,9 @@ mbuf_putstring(struct md_xml *p, const char *buf) static int mbuf_nputstring(struct md_xml *p, const char *buf, size_t sz) { - size_t i; + int i; - for (i = 0; i < sz; i++) { + for (i = 0; i < (int)sz; i++) { switch (buf[i]) { case ('&'): if ( ! md_buf_puts(p->mbuf, "&", 5))