1
0
mirror of https://gitlab.gnome.org/GNOME/libxml2.git synced 2024-10-26 12:25:09 +03:00

encoding: Fix table entry for "UTF16"

This commit is contained in:
Nick Wellnhofer 2024-09-13 12:08:20 +02:00
parent 5e7874015e
commit dae160c64b

View File

@ -106,7 +106,7 @@ static const xmlEncTableEntry xmlEncTable[] = {
{ "UTF-16BE", XML_CHAR_ENCODING_UTF16BE },
{ "UTF-16LE", XML_CHAR_ENCODING_UTF16LE },
{ "UTF-8", XML_CHAR_ENCODING_UTF8 },
{ "UTF16", XML_CHAR_ENCODING_UTF16LE },
{ "UTF16", XML_CHAR_ENCODING_UTF16 },
{ "UTF8", XML_CHAR_ENCODING_UTF8 }
};