[<prev] [next>] [day] [month] [year] [list]
Message-Id: <1496307010-12231-1-git-send-email-zhangshengju@cmss.chinamobile.com>
Date: Thu, 1 Jun 2017 16:50:10 +0800
From: Zhang Shengju <zhangshengju@...s.chinamobile.com>
To: jaegeuk@...nel.org, linux-kernel@...r.kernel.org
Subject: [-next] 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@...s.chinamobile.com>
---
fs/f2fs/acl.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/fs/f2fs/acl.c b/fs/f2fs/acl.c
index 8f48769..a140c5e 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);
}
}
--
1.8.3.1
Powered by blists - more mailing lists