diff --git a/[refs] b/[refs] index 03a9b2d9b3eb..121b40cf7a3f 100644 --- a/[refs] +++ b/[refs] @@ -1,2 +1,2 @@ --- -refs/heads/master: 02473119bc54b0b239c2501064c7a37314347f87 +refs/heads/master: 0a90e0f1012e576500b551455b046013324826b9 diff --git a/trunk/fs/fat/dir.c b/trunk/fs/fat/dir.c index 5efbd5d7701a..aca191bd5f8f 100644 --- a/trunk/fs/fat/dir.c +++ b/trunk/fs/fat/dir.c @@ -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++ = '?';