summaryrefslogtreecommitdiffstats
path: root/fs/f2fs/acl.c
diff options
context:
space:
mode:
authorZhang Shengju2017-06-01 10:50:10 +0200
committerJaegeuk Kim2017-07-04 11:11:32 +0200
commit68390dd9bd5b2ef7c3ec69c23010b39981e264a4 (patch)
treec145482858278acac80d0fa608d62b0e3dfe42b5 /fs/f2fs/acl.c
parentf2fs: remove false-positive bug_on (diff)
downloadkernel-qcow2-linux-68390dd9bd5b2ef7c3ec69c23010b39981e264a4.tar.gz
kernel-qcow2-linux-68390dd9bd5b2ef7c3ec69c23010b39981e264a4.tar.xz
kernel-qcow2-linux-68390dd9bd5b2ef7c3ec69c23010b39981e264a4.zip
f2fs: remove the unnecessary cast for PTR_ERR
It's not necessary to specify 'int' casting for PTR_ERR. Signed-off-by: Zhang Shengju <zhangshengju@cmss.chinamobile.com> Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org>
Diffstat (limited to 'fs/f2fs/acl.c')
-rw-r--r--fs/f2fs/acl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/f2fs/acl.c b/fs/f2fs/acl.c
index 8f487692c21f..a140c5e3dc54 100644
--- a/fs/f2fs/acl.c
+++ b/fs/f2fs/acl.c
@@ -233,7 +233,7 @@ static int __f2fs_set_acl(struct inode *inode, int type,
value = f2fs_acl_to_disk(F2FS_I_SB(inode), acl, &size);
if (IS_ERR(value)) {
clear_inode_flag(inode, FI_ACL_MODE);
- return (int)PTR_ERR(value);
+ return PTR_ERR(value);
}
}