diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2016-07-20 16:22:29 -0400 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2016-07-20 23:30:06 -0400 |
commit | 71e939634de7ed6aad2978b55d131ec6f1f9aaa6 (patch) | |
tree | 7e84d4bba19ed003774e84a4ff68fe3bb412151b /fs/hfs/trans.c | |
parent | b5cce521e849c998e169820c734731a468fcf2b4 (diff) | |
download | linux-71e939634de7ed6aad2978b55d131ec6f1f9aaa6.tar.gz linux-71e939634de7ed6aad2978b55d131ec6f1f9aaa6.tar.bz2 linux-71e939634de7ed6aad2978b55d131ec6f1f9aaa6.zip |
qstr: constify instances in hfs
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/hfs/trans.c')
-rw-r--r-- | fs/hfs/trans.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/hfs/trans.c b/fs/hfs/trans.c index b1ce4c7ad3fb..39f5e343bf4d 100644 --- a/fs/hfs/trans.c +++ b/fs/hfs/trans.c @@ -94,7 +94,7 @@ out: * This routine is a inverse to hfs_mac2triv(). * A ':' is replaced by a '/'. */ -void hfs_asc2mac(struct super_block *sb, struct hfs_name *out, struct qstr *in) +void hfs_asc2mac(struct super_block *sb, struct hfs_name *out, const struct qstr *in) { struct nls_table *nls_disk = HFS_SB(sb)->nls_disk; struct nls_table *nls_io = HFS_SB(sb)->nls_io; |