lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [day] [month] [year] [list]
Date:	Thu, 16 Jun 2016 22:01:21 +0800
From:	Wei Tang <tangwei@...s.chinamobile.com>
To:	hch@...radead.org
Cc:	linux-kernel@...r.kernel.org,
	Wei Tang <tangwei@...s.chinamobile.com>
Subject: [PATCH] freevxfs: remove useless parentheses after return

The parentheses after return is not required, remove it.

Signed-off-by: Wei Tang <tangwei@...s.chinamobile.com>
---
 fs/freevxfs/vxfs_inode.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/fs/freevxfs/vxfs_inode.c b/fs/freevxfs/vxfs_inode.c
index 3e2ccad..93e9c16 100644
--- a/fs/freevxfs/vxfs_inode.c
+++ b/fs/freevxfs/vxfs_inode.c
@@ -208,7 +208,7 @@ vxfs_transmod(struct vxfs_inode_info *vip)
 	if (VXFS_ISSOC(vip))
 		ret |= S_IFSOCK;
 
-	return (ret);
+	return ret;
 }
 
 /**
-- 
1.9.1


Powered by blists - more mailing lists