Fix typo with -m option

This commit is contained in:
James Clark 1998-06-03 10:55:52 +00:00
parent 5c3919e6bf
commit 42bd1cb01c

View file

@ -195,7 +195,7 @@ void metaStartElement(XML_Parser parser, const XML_Char *name, const XML_Char **
if (*atts) {
fputts(T(">\n"), fp);
do {
ftprintf(fp, T("<starttag name=\"%s\" value=\""), atts[0]);
ftprintf(fp, T("<attribute name=\"%s\" value=\""), atts[0]);
characterData(fp, atts[1], tcslen(atts[1]));
fputts(T("\"/>\n"), fp);
} while (*(atts += 2));