1
0
mirror of https://gitlab.gnome.org/GNOME/libxml2.git synced 2025-07-30 22:43:14 +03:00

fix the previous commit Daniel

* encoding.c: fix the previous commit
Daniel
This commit is contained in:
Daniel Veillard
2003-07-29 13:30:42 +00:00
parent 4a557d97bf
commit 9ff7de14ae
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
Tue Jul 29 09:28:09 EDT 2003 Daniel Veillard <daniel@veillard.com>
* encoding.c: fix the previous commit
Tue Jul 29 12:28:17 HKT 2003 William Brack <wbrack@mmm.com.hk>
* HTMLparser.c: fixed problem with comments reported by Nick Kew

View File

@ -128,7 +128,7 @@ xmlUTF8Charcmp(const xmlChar *utf1, const xmlChar *utf2) {
return 0;
return -1;
}
return xmlStrncmp(utf1, utf2, xsltUTF8Size(utf1));
return xmlStrncmp(utf1, utf2, xmlUTF8Size(utf1));
}
/**