X-Git-Url: https://wimlib.net/git/?p=wimlib;a=blobdiff_plain;f=src%2Futil.c;h=725b12725c4fb91c2279244397be38fe75b070bc;hp=47b76a828bc534ac8cb91c8d3d825bdfe07bebe3;hb=815ad485b8ce48db48a3137d73e511f6c9af868c;hpb=0e4862eb6d10b7266240fe29ed1ecbd2ad5b0f36 diff --git a/src/util.c b/src/util.c index 47b76a82..725b1272 100644 --- a/src/util.c +++ b/src/util.c @@ -295,8 +295,8 @@ static iconv_t cd_utf8_to_utf16 = (iconv_t)(-1); /* Converts a string in the UTF-8 encoding to a newly allocated string in the * UTF-16 encoding. */ -char *utf8_to_utf16(const char *utf8_str, size_t utf8_len, - size_t *utf16_len_ret) +char *utf8_to_utf16(const char *utf8_str, size_t utf8_len, + size_t *utf16_len_ret) { if (cd_utf8_to_utf16 == (iconv_t)(-1)) { cd_utf8_to_utf16 = iconv_open("UTF-16LE", "UTF-8");