xmllint.c - fixing typo

Sun Sep 23 21:02:39 MDT 2001 John Fleck <jfleck@inkstain.net>

	* xmllint.c - fixing typo
This commit is contained in:
MDT 2001 John Fleck 2001-09-24 03:08:43 +00:00 committed by John Fleck
parent d28e48ab49
commit bbb9e43758
2 changed files with 6 additions and 2 deletions

View File

@ -1,3 +1,7 @@
Sun Sep 23 21:02:39 MDT 2001 John Fleck <jfleck@inkstain.net>
* xmllint.c - fixing typo
Sat Sep 22 10:00:00 HKT 2001 William Brack <wbrack@mmm.com.hk>
* HTMLparser.c: small enhancement to prevent loop on

View File

@ -607,9 +607,9 @@ static void parseAndPrintFile(char *filename) {
if (nb < 0) {
printf("could not get valid list of elements\n");
} else if (nb == 0) {
printf("No element can be indersted under root\n");
printf("No element can be inserted under root\n");
} else {
printf("%d element types can be indersted under root:\n",
printf("%d element types can be inserted under root:\n",
nb);
for (i = 0;i < nb;i++) {
printf("%s\n", list[i]);