diff options
-rw-r--r-- | fs/fat/dir.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/fat/dir.c b/fs/fat/dir.c index 5efbd5d7701a..aca191bd5f8f 100644 --- a/fs/fat/dir.c +++ b/fs/fat/dir.c | |||
@@ -156,8 +156,8 @@ static int uni16_to_x8(struct super_block *sb, unsigned char *ascii, | |||
156 | } else { | 156 | } else { |
157 | if (uni_xlate == 1) { | 157 | if (uni_xlate == 1) { |
158 | *op++ = ':'; | 158 | *op++ = ':'; |
159 | op = pack_hex_byte(op, ec >> 8); | 159 | op = hex_byte_pack(op, ec >> 8); |
160 | op = pack_hex_byte(op, ec); | 160 | op = hex_byte_pack(op, ec); |
161 | len -= 5; | 161 | len -= 5; |
162 | } else { | 162 | } else { |
163 | *op++ = '?'; | 163 | *op++ = '?'; |