diff options
author | Pali Rohár <pali@kernel.org> | 2022-12-26 15:25:12 +0100 |
---|---|---|
committer | Andrew Morton <akpm@linux-foundation.org> | 2023-02-02 22:50:04 -0800 |
commit | 227849a33a8ba2ee6fdff0a0a724b2af1c3b344c (patch) | |
tree | 0ef790d4a6a924b3550b94ce2729e7ea280e5a6e /fs/fat | |
parent | e227db4d4f125efb1cae2f1337da85bc10b3185e (diff) | |
download | linux-227849a33a8ba2ee6fdff0a0a724b2af1c3b344c.tar.gz linux-227849a33a8ba2ee6fdff0a0a724b2af1c3b344c.tar.bz2 linux-227849a33a8ba2ee6fdff0a0a724b2af1c3b344c.zip |
fat: fix return value of vfat_bad_char() and vfat_replace_char() functions
These functions returns boolean value not wide character.
Link: https://lkml.kernel.org/r/20221226142512.13848-1-pali@kernel.org
Signed-off-by: Pali Rohár <pali@kernel.org>
Acked-by: OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Diffstat (limited to 'fs/fat')
-rw-r--r-- | fs/fat/namei_vfat.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/fat/namei_vfat.c b/fs/fat/namei_vfat.c index 21620054e1c4..0735e4f0aeed 100644 --- a/fs/fat/namei_vfat.c +++ b/fs/fat/namei_vfat.c @@ -200,7 +200,7 @@ static const struct dentry_operations vfat_dentry_ops = { /* Characters that are undesirable in an MS-DOS file name */ -static inline wchar_t vfat_bad_char(wchar_t w) +static inline bool vfat_bad_char(wchar_t w) { return (w < 0x0020) || (w == '*') || (w == '?') || (w == '<') || (w == '>') @@ -208,7 +208,7 @@ static inline wchar_t vfat_bad_char(wchar_t w) || (w == '\\'); } -static inline wchar_t vfat_replace_char(wchar_t w) +static inline bool vfat_replace_char(wchar_t w) { return (w == '[') || (w == ']') || (w == ';') || (w == ',') || (w == '+') || (w == '='); |