From 96adb37e3cbd85b031859ad40f34e404b305d2c2 Mon Sep 17 00:00:00 2001 From: Andy Shevchenko Date: Mon, 31 Oct 2011 17:12:57 -0700 Subject: [PATCH] --- yaml --- r: 272223 b: refs/heads/master c: 0a90e0f1012e576500b551455b046013324826b9 h: refs/heads/master i: 272221: 384abf83d21a596c55be41669e95a06df4ba3452 272219: ecce833b4f28bac5ce4efedaa59fee51823de3a2 272215: d9dbece9fc1245129f8a8a5783239dabb1211745 272207: 4836d58f5ac50575c1feb02658f1a3dc9ef8968a 272191: 48a02317cec7cf64c07a0485a470d77723dfb5d1 v: v3 --- [refs] | 2 +- trunk/fs/fat/dir.c | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) 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++ = '?';