]> wimlib.net Git - wimlib/blobdiff - src/util.c
NTFS apply updates
[wimlib] / src / util.c
index 985d11b875c90352233d73ecbd9f1bdcc918bdd0..1e134f7ad29f7ae75ec44799e9f6b1f22f9c0a91 100644 (file)
@@ -267,7 +267,7 @@ static iconv_t cd_utf16_to_utf8 = (iconv_t)(-1);
 /* Converts a string in the UTF-16 encoding to a newly allocated string in the
  * UTF-8 encoding.  */
 char *utf16_to_utf8(const char *utf16_str, size_t utf16_len,
-                               size_t *utf8_len_ret)
+                   size_t *utf8_len_ret)
 {
        if (cd_utf16_to_utf8 == (iconv_t)(-1)) {
                cd_utf16_to_utf8 = iconv_open("UTF-8", "UTF-16LE");