diff options
-rw-r--r-- | fs/isofs/inode.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/isofs/inode.c b/fs/isofs/inode.c index 15c866f1a1fd..4f5418be0590 100644 --- a/fs/isofs/inode.c +++ b/fs/isofs/inode.c | |||
@@ -197,7 +197,7 @@ isofs_hashi_common(struct dentry *dentry, struct qstr *qstr, int ms) | |||
197 | hash = init_name_hash(); | 197 | hash = init_name_hash(); |
198 | while (len--) { | 198 | while (len--) { |
199 | c = tolower(*name++); | 199 | c = tolower(*name++); |
200 | hash = partial_name_hash(tolower(c), hash); | 200 | hash = partial_name_hash(c, hash); |
201 | } | 201 | } |
202 | qstr->hash = end_name_hash(hash); | 202 | qstr->hash = end_name_hash(hash); |
203 | 203 | ||