]> Pileus Git - ~andy/linux/blobdiff - fs/fat/dir.c
Merge branch 'fixes' of git://github.com/hzhuang1/linux into fixes
[~andy/linux] / fs / fat / dir.c
index 5efbd5d7701a1d63721f646958d92f36830807f0..aca191bd5f8fa66bcef77c549b647fce81e28b0f 100644 (file)
@@ -156,8 +156,8 @@ static int uni16_to_x8(struct super_block *sb, unsigned char *ascii,
                } else {
                        if (uni_xlate == 1) {
                                *op++ = ':';
-                               op = pack_hex_byte(op, ec >> 8);
-                               op = pack_hex_byte(op, ec);
+                               op = hex_byte_pack(op, ec >> 8);
+                               op = hex_byte_pack(op, ec);
                                len -= 5;
                        } else {
                                *op++ = '?';