diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2013-03-29 17:23:28 +0100 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2013-04-09 20:13:05 +0200 |
commit | 0ecc833bac594099505a090cbca6ccd5b83d5975 (patch) | |
tree | 399f524f078636335aeb465f805eff6ed27137b1 /fs/f2fs/acl.c | |
parent | snd_info_register: switch to proc_create_data/proc_mkdir_mode (diff) | |
download | linux-0ecc833bac594099505a090cbca6ccd5b83d5975.tar.xz linux-0ecc833bac594099505a090cbca6ccd5b83d5975.zip |
mode_t, whack-a-mole at 11...
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/f2fs/acl.c')
-rw-r--r-- | fs/f2fs/acl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/f2fs/acl.c b/fs/f2fs/acl.c index 137af4255da6..44abc2f286e0 100644 --- a/fs/f2fs/acl.c +++ b/fs/f2fs/acl.c @@ -299,7 +299,7 @@ int f2fs_acl_chmod(struct inode *inode) struct f2fs_sb_info *sbi = F2FS_SB(inode->i_sb); struct posix_acl *acl; int error; - mode_t mode = get_inode_mode(inode); + umode_t mode = get_inode_mode(inode); if (!test_opt(sbi, POSIX_ACL)) return 0; |