ppc: inspection: Use iconv "UTF-16LE" instead of "UTF-16".

See commit message:
8e31fd84cb
This commit is contained in:
Richard W.M. Jones
2013-09-10 22:37:18 +01:00
parent bae6d5cc63
commit aee6fc4863

View File

@@ -644,7 +644,7 @@ guestfs__hivex_value_utf8 (guestfs_h *g, int64_t valueh)
static char *
utf16_to_utf8 (/* const */ char *input, size_t len)
{
iconv_t ic = iconv_open ("UTF-8", "UTF-16");
iconv_t ic = iconv_open ("UTF-8", "UTF-16LE");
if (ic == (iconv_t) -1)
return NULL;