diff options
| author | Daniel Veillard <veillard@src.gnome.org> | 2003-07-29 13:30:42 +0000 |
|---|---|---|
| committer | Daniel Veillard <veillard@src.gnome.org> | 2003-07-29 13:30:42 +0000 |
| commit | 9ff7de14aef5ffebdc2b727bfef74d31e08bc4f9 (patch) | |
| tree | 9313d82a4e8588f3e54552424e5a2eb7baed9c21 /encoding.c | |
| parent | 4a557d97bfff5497500a6e707f7892cc4c092153 (diff) | |
| download | android_external_libxml2-9ff7de14aef5ffebdc2b727bfef74d31e08bc4f9.tar.gz android_external_libxml2-9ff7de14aef5ffebdc2b727bfef74d31e08bc4f9.tar.bz2 android_external_libxml2-9ff7de14aef5ffebdc2b727bfef74d31e08bc4f9.zip | |
fix the previous commit Daniel
* encoding.c: fix the previous commit
Daniel
Diffstat (limited to 'encoding.c')
| -rw-r--r-- | encoding.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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)); } /** |
