aboutsummaryrefslogtreecommitdiffstats
path: root/encoding.c
diff options
context:
space:
mode:
authorDaniel Veillard <veillard@src.gnome.org>2003-07-29 13:30:42 +0000
committerDaniel Veillard <veillard@src.gnome.org>2003-07-29 13:30:42 +0000
commit9ff7de14aef5ffebdc2b727bfef74d31e08bc4f9 (patch)
tree9313d82a4e8588f3e54552424e5a2eb7baed9c21 /encoding.c
parent4a557d97bfff5497500a6e707f7892cc4c092153 (diff)
downloadandroid_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.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/encoding.c b/encoding.c
index 5cefd39c..7d1a9716 100644
--- a/encoding.c
+++ b/encoding.c
@@ -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));
}
/**